Richard J. Knight | 3f0e29c | 2017-10-13 10:39:01 -0500 | [diff] [blame] | 1 | config BR2_PACKAGE_HCODE |
| 2 | bool "hcode" |
| 3 | default y if (BR2_OPENPOWER_PLATFORM && BR2_OPENPOWER_POWER9) |
Klaus Heinrich Kiwi | dc4a86f | 2020-05-11 16:29:14 -0300 | [diff] [blame] | 4 | depends on BR2_PACKAGE_HAS_PPE42_TOOLCHAIN |
Richard J. Knight | 3f0e29c | 2017-10-13 10:39:01 -0500 | [diff] [blame] | 5 | select BR2_CPP |
| 6 | help |
| 7 | Project to build the hcode firmware codebase |
| 8 | |
Stewart Smith | 4b6a8ce | 2018-04-26 18:06:24 +1000 | [diff] [blame] | 9 | if BR2_PACKAGE_HCODE |
| 10 | |
Richard J. Knight | 3f0e29c | 2017-10-13 10:39:01 -0500 | [diff] [blame] | 11 | config BR2_HCODE_INCLUDE_IONV |
| 12 | bool "Enables packaging of the NVIDIA GPU image into the final hw image" |
| 13 | default y |
| 14 | help |
| 15 | Boolean used to flag whether to include NVIDIA GPU binary |
| 16 | |
Stewart Smith | 5fb8a33 | 2018-04-26 18:11:38 +1000 | [diff] [blame] | 17 | choice |
| 18 | prompt "HCODE version" |
Stewart Smith | d68fc1f | 2018-05-16 21:11:31 -0500 | [diff] [blame] | 19 | default BR2_HCODE_LATEST_VERSION |
Stewart Smith | 5fb8a33 | 2018-04-26 18:11:38 +1000 | [diff] [blame] | 20 | |
Stewart Smith | 5fb8a33 | 2018-04-26 18:11:38 +1000 | [diff] [blame] | 21 | config BR2_HCODE_LATEST_VERSION |
| 22 | bool "Use latest HCODE master" |
| 23 | |
| 24 | config BR2_HCODE_CUSTOM_VERSION |
| 25 | bool "Custom HCODE version" |
| 26 | |
| 27 | endchoice |
| 28 | |
| 29 | config BR2_HCODE_CUSTOM_VERSION_VALUE |
| 30 | string "HCODE version" |
| 31 | depends on BR2_HCODE_CUSTOM_VERSION |
| 32 | |
| 33 | config BR2_HCODE_VERSION |
| 34 | string |
hostboot | bb7d75f | 2020-06-23 02:49:41 -0500 | [diff] [blame^] | 35 | default "hw062220a.opmst" if BR2_HCODE_LATEST_VERSION |
Stewart Smith | 5fb8a33 | 2018-04-26 18:11:38 +1000 | [diff] [blame] | 36 | default BR2_HCODE_CUSTOM_VERSION_VALUE \ |
| 37 | if BR2_HCODE_CUSTOM_VERSION |
| 38 | |
Stewart Smith | 4b6a8ce | 2018-04-26 18:06:24 +1000 | [diff] [blame] | 39 | endif |