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 |
Nick Bofferding | 40f8040 | 2019-09-10 18:07:04 -0500 | [diff] [blame] | 6 | select BR2_PACKAGE_HOSTBOOT_BINARIES |
Richard J. Knight | 3f0e29c | 2017-10-13 10:39:01 -0500 | [diff] [blame] | 7 | help |
| 8 | Project to build the hcode firmware codebase |
| 9 | |
Stewart Smith | 4b6a8ce | 2018-04-26 18:06:24 +1000 | [diff] [blame] | 10 | if BR2_PACKAGE_HCODE |
| 11 | |
Richard J. Knight | 3f0e29c | 2017-10-13 10:39:01 -0500 | [diff] [blame] | 12 | config BR2_HCODE_INCLUDE_IONV |
| 13 | bool "Enables packaging of the NVIDIA GPU image into the final hw image" |
| 14 | default y |
| 15 | help |
| 16 | Boolean used to flag whether to include NVIDIA GPU binary |
| 17 | |
Stewart Smith | 5fb8a33 | 2018-04-26 18:11:38 +1000 | [diff] [blame] | 18 | choice |
| 19 | prompt "HCODE version" |
Stewart Smith | d68fc1f | 2018-05-16 21:11:31 -0500 | [diff] [blame] | 20 | default BR2_HCODE_LATEST_VERSION |
Stewart Smith | 5fb8a33 | 2018-04-26 18:11:38 +1000 | [diff] [blame] | 21 | |
Stewart Smith | 5fb8a33 | 2018-04-26 18:11:38 +1000 | [diff] [blame] | 22 | config BR2_HCODE_LATEST_VERSION |
| 23 | bool "Use latest HCODE master" |
| 24 | |
| 25 | config BR2_HCODE_CUSTOM_VERSION |
| 26 | bool "Custom HCODE version" |
| 27 | |
| 28 | endchoice |
| 29 | |
| 30 | config BR2_HCODE_CUSTOM_VERSION_VALUE |
| 31 | string "HCODE version" |
| 32 | depends on BR2_HCODE_CUSTOM_VERSION |
| 33 | |
| 34 | config BR2_HCODE_VERSION |
| 35 | string |
hostboot | eeeff22 | 2022-12-05 01:43:56 -0600 | [diff] [blame^] | 36 | default "hw120222a.opmst" if BR2_HCODE_LATEST_VERSION |
Stewart Smith | 5fb8a33 | 2018-04-26 18:11:38 +1000 | [diff] [blame] | 37 | default BR2_HCODE_CUSTOM_VERSION_VALUE \ |
| 38 | if BR2_HCODE_CUSTOM_VERSION |
| 39 | |
Stewart Smith | 4b6a8ce | 2018-04-26 18:06:24 +1000 | [diff] [blame] | 40 | endif |