default 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941
  1. #
  2. # Automatically generated file; DO NOT EDIT.
  3. # U-Boot 2022.07 Configuration
  4. #
  5. #
  6. # Compiler: gcc (Debian 12.2.0-1) 12.2.0
  7. #
  8. CONFIG_CREATE_ARCH_SYMLINK=y
  9. CONFIG_SYS_CACHE_SHIFT_6=y
  10. CONFIG_SYS_CACHELINE_SIZE=64
  11. CONFIG_LINKER_LIST_ALIGN=4
  12. # CONFIG_ARC is not set
  13. CONFIG_ARM=y
  14. # CONFIG_M68K is not set
  15. # CONFIG_MICROBLAZE is not set
  16. # CONFIG_MIPS is not set
  17. # CONFIG_NIOS2 is not set
  18. # CONFIG_PPC is not set
  19. # CONFIG_RISCV is not set
  20. # CONFIG_SANDBOX is not set
  21. # CONFIG_SH is not set
  22. # CONFIG_X86 is not set
  23. # CONFIG_XTENSA is not set
  24. CONFIG_SYS_ARCH="arm"
  25. CONFIG_SYS_CPU="armv7"
  26. CONFIG_SYS_SOC="rk3288"
  27. CONFIG_SYS_VENDOR="google"
  28. CONFIG_SYS_BOARD="veyron"
  29. CONFIG_SYS_CONFIG_NAME="veyron"
  30. # CONFIG_SKIP_LOWLEVEL_INIT is not set
  31. CONFIG_SPL_SKIP_LOWLEVEL_INIT=y
  32. # CONFIG_TPL_SKIP_LOWLEVEL_INIT is not set
  33. CONFIG_SKIP_LOWLEVEL_INIT_ONLY=y
  34. # CONFIG_SPL_SKIP_LOWLEVEL_INIT_ONLY is not set
  35. # CONFIG_SYS_ICACHE_OFF is not set
  36. # CONFIG_SPL_SYS_ICACHE_OFF is not set
  37. # CONFIG_SYS_DCACHE_OFF is not set
  38. # CONFIG_SPL_SYS_DCACHE_OFF is not set
  39. #
  40. # ARM architecture
  41. #
  42. CONFIG_COUNTER_FREQUENCY=24000000
  43. CONFIG_POSITION_INDEPENDENT=y
  44. CONFIG_LNX_KRNL_IMG_TEXT_OFFSET_BASE=0x00100000
  45. # CONFIG_GIC_V3_ITS is not set
  46. CONFIG_HAS_VBAR=y
  47. CONFIG_HAS_THUMB2=y
  48. CONFIG_ARM_ASM_UNIFIED=y
  49. CONFIG_SYS_ARM_CACHE_CP15=y
  50. CONFIG_SYS_ARM_MMU=y
  51. # CONFIG_SYS_ARM_MPU is not set
  52. CONFIG_CPU_V7A=y
  53. CONFIG_SYS_ARM_ARCH=7
  54. CONFIG_SYS_ARM_CACHE_WRITEBACK=y
  55. # CONFIG_SYS_ARM_CACHE_WRITETHROUGH is not set
  56. # CONFIG_SYS_ARM_CACHE_WRITEALLOC is not set
  57. # CONFIG_ARCH_CPU_INIT is not set
  58. CONFIG_SYS_ARCH_TIMER=y
  59. # CONFIG_ARM_SMCCC is not set
  60. # CONFIG_SEMIHOSTING is not set
  61. # CONFIG_SPL_SEMIHOSTING is not set
  62. CONFIG_SYS_THUMB_BUILD=y
  63. CONFIG_SPL_SYS_THUMB_BUILD=y
  64. # CONFIG_SYS_L2CACHE_OFF is not set
  65. CONFIG_ENABLE_ARM_SOC_BOOT0_HOOK=y
  66. CONFIG_USE_ARCH_MEMCPY=y
  67. # CONFIG_SPL_USE_ARCH_MEMCPY is not set
  68. CONFIG_USE_ARCH_MEMSET=y
  69. CONFIG_SPL_USE_ARCH_MEMSET=y
  70. # CONFIG_ARCH_AT91 is not set
  71. # CONFIG_ARCH_DAVINCI is not set
  72. # CONFIG_ARCH_KIRKWOOD is not set
  73. # CONFIG_ARCH_MVEBU is not set
  74. # CONFIG_ARCH_ORION5X is not set
  75. # CONFIG_TARGET_STV0991 is not set
  76. # CONFIG_ARCH_BCM283X is not set
  77. # CONFIG_ARCH_BCM63158 is not set
  78. # CONFIG_ARCH_BCM6753 is not set
  79. # CONFIG_ARCH_BCM68360 is not set
  80. # CONFIG_ARCH_BCM6858 is not set
  81. # CONFIG_ARCH_BCMSTB is not set
  82. # CONFIG_TARGET_VEXPRESS_CA9X4 is not set
  83. # CONFIG_TARGET_BCMCYGNUS is not set
  84. # CONFIG_TARGET_BCMNS2 is not set
  85. # CONFIG_TARGET_BCMNS3 is not set
  86. # CONFIG_ARCH_EXYNOS is not set
  87. # CONFIG_ARCH_S5PC1XX is not set
  88. # CONFIG_ARCH_HIGHBANK is not set
  89. # CONFIG_ARCH_INTEGRATOR is not set
  90. # CONFIG_ARCH_IPQ40XX is not set
  91. # CONFIG_ARCH_KEYSTONE is not set
  92. # CONFIG_ARCH_K3 is not set
  93. # CONFIG_ARCH_OMAP2PLUS is not set
  94. # CONFIG_ARCH_MESON is not set
  95. # CONFIG_ARCH_MEDIATEK is not set
  96. # CONFIG_ARCH_LPC32XX is not set
  97. # CONFIG_ARCH_IMX8 is not set
  98. # CONFIG_ARCH_IMX8M is not set
  99. # CONFIG_ARCH_IMX8ULP is not set
  100. # CONFIG_ARCH_IMXRT is not set
  101. # CONFIG_ARCH_MX23 is not set
  102. # CONFIG_ARCH_MX28 is not set
  103. # CONFIG_ARCH_MX31 is not set
  104. # CONFIG_ARCH_MX7ULP is not set
  105. # CONFIG_ARCH_MX7 is not set
  106. # CONFIG_ARCH_MX6 is not set
  107. CONFIG_SPL_LDSCRIPT="arch/$(ARCH)/cpu/u-boot-spl.lds"
  108. # CONFIG_ARCH_MX5 is not set
  109. # CONFIG_ARCH_NEXELL is not set
  110. # CONFIG_ARCH_NPCM is not set
  111. # CONFIG_ARCH_APPLE is not set
  112. # CONFIG_ARCH_OWL is not set
  113. # CONFIG_ARCH_QEMU is not set
  114. # CONFIG_ARCH_RMOBILE is not set
  115. # CONFIG_ARCH_SNAPDRAGON is not set
  116. # CONFIG_ARCH_SOCFPGA is not set
  117. # CONFIG_ARCH_SUNXI is not set
  118. # CONFIG_ARCH_U8500 is not set
  119. # CONFIG_ARCH_VERSAL is not set
  120. # CONFIG_ARCH_VF610 is not set
  121. # CONFIG_ARCH_ZYNQ is not set
  122. # CONFIG_ARCH_ZYNQMP_R5 is not set
  123. # CONFIG_ARCH_ZYNQMP is not set
  124. # CONFIG_ARCH_TEGRA is not set
  125. # CONFIG_ARCH_VEXPRESS64 is not set
  126. # CONFIG_TARGET_TOTAL_COMPUTE is not set
  127. # CONFIG_TARGET_LS2080A_EMU is not set
  128. # CONFIG_TARGET_LS1088AQDS is not set
  129. # CONFIG_TARGET_LS2080AQDS is not set
  130. # CONFIG_TARGET_LS2080ARDB is not set
  131. # CONFIG_TARGET_LS2081ARDB is not set
  132. # CONFIG_TARGET_LX2160ARDB is not set
  133. # CONFIG_TARGET_LX2160AQDS is not set
  134. # CONFIG_TARGET_LX2162AQDS is not set
  135. # CONFIG_TARGET_HIKEY is not set
  136. # CONFIG_TARGET_HIKEY960 is not set
  137. # CONFIG_TARGET_POPLAR is not set
  138. # CONFIG_TARGET_LS1012AQDS is not set
  139. # CONFIG_TARGET_LS1012ARDB is not set
  140. # CONFIG_TARGET_LS1012A2G5RDB is not set
  141. # CONFIG_TARGET_LS1012AFRWY is not set
  142. # CONFIG_TARGET_LS1012AFRDM is not set
  143. # CONFIG_TARGET_LS1028AQDS is not set
  144. # CONFIG_TARGET_LS1028ARDB is not set
  145. # CONFIG_TARGET_LS1088ARDB is not set
  146. # CONFIG_TARGET_LS1021AQDS is not set
  147. # CONFIG_TARGET_LS1021ATWR is not set
  148. # CONFIG_TARGET_PG_WCOM_SELI8 is not set
  149. # CONFIG_TARGET_PG_WCOM_EXPU1 is not set
  150. # CONFIG_TARGET_LS1021ATSN is not set
  151. # CONFIG_TARGET_LS1021AIOT is not set
  152. # CONFIG_TARGET_LS1043AQDS is not set
  153. # CONFIG_TARGET_LS1043ARDB is not set
  154. # CONFIG_TARGET_LS1046AQDS is not set
  155. # CONFIG_TARGET_LS1046ARDB is not set
  156. # CONFIG_TARGET_LS1046AFRWY is not set
  157. # CONFIG_TARGET_SL28 is not set
  158. # CONFIG_TARGET_TEN64 is not set
  159. # CONFIG_ARCH_UNIPHIER is not set
  160. # CONFIG_ARCH_SYNQUACER is not set
  161. # CONFIG_ARCH_STM32 is not set
  162. # CONFIG_ARCH_STI is not set
  163. # CONFIG_ARCH_STM32MP is not set
  164. CONFIG_ARCH_ROCKCHIP=y
  165. # CONFIG_ARCH_OCTEONTX is not set
  166. # CONFIG_ARCH_OCTEONTX2 is not set
  167. # CONFIG_TARGET_THUNDERX_88XX is not set
  168. # CONFIG_ARCH_ASPEED is not set
  169. # CONFIG_TARGET_DURIAN is not set
  170. # CONFIG_TARGET_POMELO is not set
  171. # CONFIG_TARGET_PRESIDIO_ASIC is not set
  172. # CONFIG_TARGET_XENGUEST_ARM64 is not set
  173. # CONFIG_SUPPORT_PASSING_ATAGS is not set
  174. # CONFIG_STATIC_MACH_TYPE is not set
  175. CONFIG_SYS_TEXT_BASE=0x00100000
  176. CONFIG_SYS_MALLOC_LEN=0x2000000
  177. CONFIG_SYS_MALLOC_F_LEN=0x2000
  178. # CONFIG_SPL_GPIO is not set
  179. CONFIG_SPL_LIBCOMMON_SUPPORT=y
  180. CONFIG_SPL_LIBGENERIC_SUPPORT=y
  181. CONFIG_NR_DRAM_BANKS=1
  182. CONFIG_ENV_SIZE=0x1f000
  183. CONFIG_DM_GPIO=y
  184. CONFIG_SPL_DM_SPI=y
  185. CONFIG_DEFAULT_DEVICE_TREE="rk3288-veyron-jerry"
  186. CONFIG_SPL_TEXT_BASE=0xff704000
  187. CONFIG_BOARD_SPECIFIC_OPTIONS=y
  188. CONFIG_MULTI_DTB_FIT_UNCOMPRESS_SZ=0x8000
  189. # CONFIG_ROCKCHIP_PX30 is not set
  190. # CONFIG_ROCKCHIP_RK3036 is not set
  191. # CONFIG_ROCKCHIP_RK3066 is not set
  192. # CONFIG_ROCKCHIP_RK3128 is not set
  193. # CONFIG_ROCKCHIP_RK3188 is not set
  194. # CONFIG_ROCKCHIP_RK322X is not set
  195. CONFIG_ROCKCHIP_RK3288=y
  196. # CONFIG_ROCKCHIP_RK3308 is not set
  197. # CONFIG_ROCKCHIP_RK3328 is not set
  198. # CONFIG_ROCKCHIP_RK3368 is not set
  199. # CONFIG_ROCKCHIP_RK3399 is not set
  200. # CONFIG_ROCKCHIP_RK3568 is not set
  201. # CONFIG_ROCKCHIP_RV1108 is not set
  202. # CONFIG_ROCKCHIP_USB_UART is not set
  203. # CONFIG_SPL_ROCKCHIP_BACK_TO_BROM is not set
  204. CONFIG_ROCKCHIP_COMMON_BOARD=y
  205. CONFIG_SPL_ROCKCHIP_COMMON_BOARD=y
  206. CONFIG_ROCKCHIP_BOOT_MODE_REG=0xff730094
  207. # CONFIG_ROCKCHIP_RK8XX_DISABLE_BOOT_ON_POWERON is not set
  208. CONFIG_ROCKCHIP_STIMER=y
  209. CONFIG_ROCKCHIP_STIMER_BASE=0xff810020
  210. CONFIG_ROCKCHIP_SPL_RESERVE_IRAM=0
  211. # CONFIG_SPL_ROCKCHIP_EARLYRETURN_TO_BROM is not set
  212. # CONFIG_SPL_MMC is not set
  213. CONFIG_ROCKCHIP_SPI_IMAGE=y
  214. CONFIG_SPL_SERIAL=y
  215. CONFIG_TPL_LDSCRIPT="arch/arm/mach-rockchip/u-boot-tpl.lds"
  216. CONFIG_TPL_TEXT_BASE=0xff704000
  217. CONFIG_TPL_MAX_SIZE=32768
  218. CONFIG_TPL_STACK=0xff718000
  219. CONFIG_TARGET_CHROMEBOOK_JERRY=y
  220. # CONFIG_TARGET_CHROMEBIT_MICKEY is not set
  221. # CONFIG_TARGET_CHROMEBOOK_MINNIE is not set
  222. # CONFIG_TARGET_CHROMEBOOK_SPEEDY is not set
  223. # CONFIG_TARGET_EVB_RK3288 is not set
  224. # CONFIG_TARGET_FENNEC_RK3288 is not set
  225. # CONFIG_TARGET_FIREFLY_RK3288 is not set
  226. # CONFIG_TARGET_MIQI_RK3288 is not set
  227. # CONFIG_TARGET_PHYCORE_RK3288 is not set
  228. # CONFIG_TARGET_POPMETAL_RK3288 is not set
  229. # CONFIG_TARGET_VYASA_RK3288 is not set
  230. # CONFIG_TARGET_ROCK2 is not set
  231. # CONFIG_TARGET_TINKER_RK3288 is not set
  232. # CONFIG_ROCKCHIP_FAST_SPL is not set
  233. CONFIG_SPL_DRIVERS_MISC=y
  234. CONFIG_SPL_STACK_R_ADDR=0x80000
  235. CONFIG_SPL_SYS_MALLOC_F_LEN=0x2000
  236. CONFIG_ERR_PTR_OFFSET=0x0
  237. CONFIG_SPL_SIZE_LIMIT=0x0
  238. CONFIG_SPL=y
  239. CONFIG_PRE_CON_BUF_ADDR=0x0f000000
  240. CONFIG_PRE_CON_BUF_SZ=4096
  241. CONFIG_BOOTSTAGE_STASH_ADDR=0
  242. CONFIG_DEBUG_UART_BOARD_INIT=y
  243. CONFIG_DEBUG_UART_BASE=0xff690000
  244. CONFIG_DEBUG_UART_CLOCK=24000000
  245. CONFIG_IDENT_STRING=""
  246. CONFIG_SYS_CLK_FREQ=0
  247. # CONFIG_CHIP_DIP_SCAN is not set
  248. # CONFIG_SPL_FS_FAT is not set
  249. # CONFIG_SPL_LIBDISK_SUPPORT is not set
  250. CONFIG_SPL_SPI_FLASH_SUPPORT=y
  251. CONFIG_SPL_SPI=y
  252. # CONFIG_HAS_ARMV7_SECURE_BASE is not set
  253. # CONFIG_ARMV7_LPAE is not set
  254. # CONFIG_CMD_DEKBLOB is not set
  255. # CONFIG_IMX_CAAM_DEK_ENCAP is not set
  256. # CONFIG_IMX_OPTEE_DEK_ENCAP is not set
  257. # CONFIG_IMX_SECO_DEK_ENCAP is not set
  258. # CONFIG_CMD_HDMIDETECT is not set
  259. CONFIG_IMX_DCD_ADDR=0x00910000
  260. # CONFIG_SPL_LOAD_IMX_CONTAINER is not set
  261. CONFIG_IMX_CONTAINER_CFG=""
  262. CONFIG_SYS_MEM_TOP_HIDE=0x0
  263. CONFIG_SYS_LOAD_ADDR=0x800800
  264. #
  265. # ARM debug
  266. #
  267. # CONFIG_DEBUG_LL is not set
  268. CONFIG_SPL_PAYLOAD="u-boot.img"
  269. CONFIG_BUILD_TARGET=""
  270. CONFIG_DEBUG_UART=y
  271. # CONFIG_AHCI is not set
  272. # CONFIG_OF_BOARD_FIXUP is not set
  273. #
  274. # General setup
  275. #
  276. CONFIG_LOCALVERSION=""
  277. CONFIG_LOCALVERSION_AUTO=y
  278. CONFIG_CC_IS_GCC=y
  279. CONFIG_GCC_VERSION=120200
  280. CONFIG_CLANG_VERSION=0
  281. CONFIG_CC_OPTIMIZE_FOR_SIZE=y
  282. # CONFIG_CC_OPTIMIZE_FOR_SPEED is not set
  283. # CONFIG_CC_OPTIMIZE_FOR_DEBUG is not set
  284. # CONFIG_OPTIMIZE_INLINING is not set
  285. # CONFIG_SPL_OPTIMIZE_INLINING is not set
  286. CONFIG_ARCH_SUPPORTS_LTO=y
  287. # CONFIG_LTO is not set
  288. CONFIG_CC_HAS_ASM_INLINE=y
  289. # CONFIG_XEN is not set
  290. CONFIG_DISTRO_DEFAULTS=y
  291. CONFIG_ENV_VARS_UBOOT_CONFIG=y
  292. # CONFIG_SYS_BOOT_GET_CMDLINE is not set
  293. # CONFIG_SYS_BOOT_GET_KBD is not set
  294. CONFIG_SYS_MALLOC_F=y
  295. # CONFIG_VALGRIND is not set
  296. CONFIG_EXPERT=y
  297. CONFIG_SYS_MALLOC_CLEAR_ON_INIT=y
  298. # CONFIG_SYS_MALLOC_DEFAULT_TO_INIT is not set
  299. # CONFIG_TOOLS_DEBUG is not set
  300. # CONFIG_PHYS_64BIT is not set
  301. CONFIG_HAS_ROM=y
  302. CONFIG_SPL_IMAGE="spl/u-boot-spl.bin"
  303. CONFIG_REMAKE_ELF=y
  304. # CONFIG_HAS_BOARD_SIZE_LIMIT is not set
  305. # CONFIG_SYS_CUSTOM_LDSCRIPT is not set
  306. CONFIG_PLATFORM_ELFENTRY="_start"
  307. CONFIG_STACK_SIZE=0x1000000
  308. CONFIG_SYS_SRAM_BASE=0x0
  309. CONFIG_SYS_SRAM_SIZE=0x0
  310. # CONFIG_MP is not set
  311. # CONFIG_EXAMPLES is not set
  312. #
  313. # API
  314. #
  315. # CONFIG_API is not set
  316. #
  317. # Boot options
  318. #
  319. #
  320. # Boot images
  321. #
  322. # CONFIG_ANDROID_BOOT_IMAGE is not set
  323. # CONFIG_FIT is not set
  324. # CONFIG_TIMESTAMP is not set
  325. CONFIG_BOOTSTD=y
  326. # CONFIG_BOOTSTD_FULL is not set
  327. # CONFIG_BOOTSTD_BOOTCOMMAND is not set
  328. CONFIG_BOOTMETH_DISTRO=y
  329. # CONFIG_BOOTMETH_SCRIPT is not set
  330. CONFIG_LEGACY_IMAGE_FORMAT=y
  331. CONFIG_SUPPORT_RAW_INITRD=y
  332. CONFIG_OF_BOARD_SETUP=y
  333. # CONFIG_OF_SYSTEM_SETUP is not set
  334. # CONFIG_OF_STDOUT_VIA_ALIAS is not set
  335. CONFIG_SYS_EXTRA_OPTIONS=""
  336. CONFIG_HAVE_SYS_TEXT_BASE=y
  337. # CONFIG_DYNAMIC_SYS_CLK_FREQ is not set
  338. CONFIG_ARCH_FIXUP_FDT_MEMORY=y
  339. # CONFIG_CHROMEOS is not set
  340. # CONFIG_CHROMEOS_VBOOT is not set
  341. # CONFIG_RAMBOOT_PBL is not set
  342. #
  343. # Boot timing
  344. #
  345. # CONFIG_BOOTSTAGE is not set
  346. CONFIG_BOOTSTAGE_STASH_SIZE=0x1000
  347. # CONFIG_SHOW_BOOT_PROGRESS is not set
  348. # CONFIG_SPL_SHOW_BOOT_PROGRESS is not set
  349. #
  350. # Boot media
  351. #
  352. # CONFIG_NAND_BOOT is not set
  353. # CONFIG_ONENAND_BOOT is not set
  354. # CONFIG_QSPI_BOOT is not set
  355. # CONFIG_SATA_BOOT is not set
  356. # CONFIG_SD_BOOT is not set
  357. # CONFIG_SD_BOOT_QSPI is not set
  358. # CONFIG_SPI_BOOT is not set
  359. #
  360. # Autoboot options
  361. #
  362. CONFIG_AUTOBOOT=y
  363. CONFIG_BOOTDELAY=2
  364. # CONFIG_AUTOBOOT_KEYED is not set
  365. # CONFIG_AUTOBOOT_USE_MENUKEY is not set
  366. # CONFIG_BOOT_RETRY is not set
  367. #
  368. # Image support
  369. #
  370. # CONFIG_IMAGE_PRE_LOAD is not set
  371. # CONFIG_USE_BOOTARGS is not set
  372. # CONFIG_BOOTARGS_SUBST is not set
  373. CONFIG_USE_BOOTCOMMAND=y
  374. CONFIG_BOOTCOMMAND="run distro_bootcmd"
  375. CONFIG_USE_PREBOOT=y
  376. CONFIG_PREBOOT=""
  377. CONFIG_DEFAULT_FDT_FILE="rk3288-veyron-jerry.dtb"
  378. # CONFIG_SAVE_PREV_BL_FDT_ADDR is not set
  379. # CONFIG_SAVE_PREV_BL_INITRAMFS_START_ADDR is not set
  380. #
  381. # Console
  382. #
  383. CONFIG_MENU=y
  384. # CONFIG_CONSOLE_RECORD is not set
  385. # CONFIG_DISABLE_CONSOLE is not set
  386. CONFIG_LOGLEVEL=4
  387. CONFIG_SPL_LOGLEVEL=4
  388. CONFIG_TPL_LOGLEVEL=4
  389. CONFIG_VPL_LOGLEVEL=4
  390. CONFIG_SILENT_CONSOLE=y
  391. # CONFIG_SILENT_U_BOOT_ONLY is not set
  392. CONFIG_SILENT_CONSOLE_UPDATE_ON_SET=y
  393. # CONFIG_SILENT_CONSOLE_UPDATE_ON_RELOC is not set
  394. CONFIG_PRE_CONSOLE_BUFFER=y
  395. CONFIG_CONSOLE_MUX=y
  396. CONFIG_SYS_CONSOLE_IS_IN_ENV=y
  397. # CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE is not set
  398. # CONFIG_SYS_CONSOLE_ENV_OVERWRITE is not set
  399. # CONFIG_SYS_CONSOLE_INFO_QUIET is not set
  400. # CONFIG_SYS_STDIO_DEREGISTER is not set
  401. # CONFIG_SPL_SYS_STDIO_DEREGISTER is not set
  402. # CONFIG_SYS_DEVICE_NULLDEV is not set
  403. #
  404. # Logging
  405. #
  406. CONFIG_LOG=y
  407. # CONFIG_VPL_LOG is not set
  408. CONFIG_LOG_MAX_LEVEL=6
  409. CONFIG_LOG_DEFAULT_LEVEL=6
  410. CONFIG_LOG_CONSOLE=y
  411. # CONFIG_LOGF_FILE is not set
  412. # CONFIG_LOGF_LINE is not set
  413. # CONFIG_LOGF_FUNC is not set
  414. CONFIG_LOGF_FUNC_PAD=20
  415. # CONFIG_LOG_SYSLOG is not set
  416. # CONFIG_SPL_LOG is not set
  417. # CONFIG_TPL_LOG is not set
  418. # CONFIG_LOG_ERROR_RETURN is not set
  419. #
  420. # Init options
  421. #
  422. # CONFIG_BOARD_TYPES is not set
  423. # CONFIG_DISPLAY_CPUINFO is not set
  424. CONFIG_DISPLAY_BOARDINFO=y
  425. CONFIG_DISPLAY_BOARDINFO_LATE=y
  426. #
  427. # Start-up hooks
  428. #
  429. # CONFIG_EVENT is not set
  430. # CONFIG_ARCH_EARLY_INIT_R is not set
  431. # CONFIG_ARCH_MISC_INIT is not set
  432. # CONFIG_BOARD_EARLY_INIT_F is not set
  433. CONFIG_BOARD_EARLY_INIT_R=y
  434. # CONFIG_BOARD_POSTCLK_INIT is not set
  435. CONFIG_BOARD_LATE_INIT=y
  436. # CONFIG_CLOCKS is not set
  437. # CONFIG_LAST_STAGE_INIT is not set
  438. # CONFIG_MISC_INIT_R is not set
  439. # CONFIG_ID_EEPROM is not set
  440. # CONFIG_RESET_PHY_R is not set
  441. #
  442. # Security support
  443. #
  444. CONFIG_HASH=y
  445. # CONFIG_STACKPROTECTOR is not set
  446. #
  447. # Update support
  448. #
  449. # CONFIG_ANDROID_AB is not set
  450. #
  451. # Blob list
  452. #
  453. # CONFIG_BLOBLIST is not set
  454. #
  455. # SPL / TPL / VPL
  456. #
  457. CONFIG_SUPPORT_SPL=y
  458. CONFIG_SUPPORT_TPL=y
  459. CONFIG_SPL_FRAMEWORK=y
  460. # CONFIG_SPL_FRAMEWORK_BOARD_INIT_F is not set
  461. CONFIG_SPL_SYS_STACK_F_CHECK_BYTE=0xaa
  462. # CONFIG_SPL_SYS_REPORT_STACK_F_USAGE is not set
  463. # CONFIG_SPL_SHOW_ERRORS is not set
  464. CONFIG_SPL_BINMAN_SYMBOLS=y
  465. #
  466. # PowerPC and LayerScape SPL Boot options
  467. #
  468. # CONFIG_SPL_BOARD_INIT is not set
  469. # CONFIG_VPL_BOARD_INIT is not set
  470. # CONFIG_SPL_BOOTROM_SUPPORT is not set
  471. # CONFIG_SPL_RAW_IMAGE_SUPPORT is not set
  472. CONFIG_SPL_LEGACY_IMAGE_FORMAT=y
  473. # CONFIG_SPL_LEGACY_IMAGE_CRC_CHECK is not set
  474. CONFIG_SPL_SYS_MALLOC_SIMPLE=y
  475. CONFIG_SPL_STACK_R=y
  476. CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN=0x2000
  477. # CONFIG_SPL_SEPARATE_BSS is not set
  478. # CONFIG_TPL_SEPARATE_BSS is not set
  479. CONFIG_SPL_BANNER_PRINT=y
  480. # CONFIG_SPL_EARLY_BSS is not set
  481. # CONFIG_SPL_DISPLAY_PRINT is not set
  482. # CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR is not set
  483. # CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION is not set
  484. # CONFIG_SPL_CRC32 is not set
  485. # CONFIG_SPL_MD5 is not set
  486. # CONFIG_SPL_CACHE is not set
  487. # CONFIG_SPL_CPU is not set
  488. # CONFIG_SPL_CRYPTO is not set
  489. # CONFIG_SPL_DMA is not set
  490. # CONFIG_SPL_ENV_SUPPORT is not set
  491. # CONFIG_SPL_FS_EXT4 is not set
  492. # CONFIG_SPL_FS_SQUASHFS is not set
  493. # CONFIG_SPL_FAT_WRITE is not set
  494. # CONFIG_SPL_FPGA is not set
  495. # CONFIG_SPL_I2C is not set
  496. # CONFIG_SPL_DM_MAILBOX is not set
  497. CONFIG_SYS_MMCSD_FS_BOOT_PARTITION=1
  498. # CONFIG_SPL_MPC8XXX_INIT_DDR is not set
  499. # CONFIG_SPL_MTD_SUPPORT is not set
  500. # CONFIG_SPL_MUSB_NEW is not set
  501. # CONFIG_SPL_NAND_SUPPORT is not set
  502. # CONFIG_SPL_NAND_DRIVERS is not set
  503. # CONFIG_SPL_NAND_ECC is not set
  504. # CONFIG_SPL_NAND_SIMPLE is not set
  505. # CONFIG_SPL_UBI is not set
  506. CONFIG_SPL_DM_SPI_FLASH=y
  507. # CONFIG_SPL_NET is not set
  508. # CONFIG_SPL_NO_CPU_SUPPORT is not set
  509. # CONFIG_SPL_NOR_SUPPORT is not set
  510. # CONFIG_SPL_XIP_SUPPORT is not set
  511. # CONFIG_SPL_ONENAND_SUPPORT is not set
  512. # CONFIG_SPL_OS_BOOT is not set
  513. # CONFIG_SPL_PCI is not set
  514. # CONFIG_SPL_PCH is not set
  515. # CONFIG_SPL_POST_MEM_SUPPORT is not set
  516. # CONFIG_SPL_DM_RESET is not set
  517. # CONFIG_SPL_POWER is not set
  518. # CONFIG_SPL_POWER_DOMAIN is not set
  519. # CONFIG_SPL_RAM_SUPPORT is not set
  520. # CONFIG_SPL_REMOTEPROC is not set
  521. # CONFIG_SPL_RTC is not set
  522. # CONFIG_SPL_SATA is not set
  523. CONFIG_SPL_SPI_FLASH_TINY=y
  524. # CONFIG_SPL_SPI_FLASH_MTD is not set
  525. CONFIG_SPL_SPI_LOAD=y
  526. CONFIG_SYS_SPI_U_BOOT_OFFS=0x20000
  527. # CONFIG_SPL_THERMAL is not set
  528. # CONFIG_SPL_USB_HOST is not set
  529. # CONFIG_SPL_USB_GADGET is not set
  530. # CONFIG_SPL_WATCHDOG is not set
  531. # CONFIG_SPL_YMODEM_SUPPORT is not set
  532. # CONFIG_SPL_AM33XX_ENABLE_RTC32K_OSC is not set
  533. # CONFIG_SPL_OPTEE_IMAGE is not set
  534. # CONFIG_TPL is not set
  535. # CONFIG_VPL is not set
  536. # CONFIG_FDT_SIMPLEFB is not set
  537. #
  538. # Command line interface
  539. #
  540. CONFIG_CMDLINE=y
  541. CONFIG_HUSH_PARSER=y
  542. CONFIG_CMDLINE_EDITING=y
  543. # CONFIG_CMDLINE_PS_SUPPORT is not set
  544. CONFIG_AUTO_COMPLETE=y
  545. CONFIG_SYS_LONGHELP=y
  546. CONFIG_SYS_PROMPT="=> "
  547. CONFIG_SYS_PROMPT_HUSH_PS2="> "
  548. CONFIG_SYS_XTRACE=y
  549. #
  550. # Commands
  551. #
  552. #
  553. # Info commands
  554. #
  555. CONFIG_CMD_BDI=y
  556. # CONFIG_CMD_CONFIG is not set
  557. CONFIG_CMD_CONSOLE=y
  558. # CONFIG_CMD_LICENSE is not set
  559. # CONFIG_CMD_PMC is not set
  560. #
  561. # Boot commands
  562. #
  563. CONFIG_CMD_BOOTD=y
  564. CONFIG_CMD_BOOTM=y
  565. # CONFIG_CMD_BOOTDEV is not set
  566. CONFIG_CMD_BOOTFLOW=y
  567. # CONFIG_CMD_BOOTMETH is not set
  568. CONFIG_CMD_BOOTZ=y
  569. CONFIG_BOOTM_LINUX=y
  570. CONFIG_BOOTM_NETBSD=y
  571. # CONFIG_BOOTM_OPENRTOS is not set
  572. # CONFIG_BOOTM_OSE is not set
  573. CONFIG_BOOTM_PLAN9=y
  574. CONFIG_BOOTM_RTEMS=y
  575. CONFIG_BOOTM_VXWORKS=y
  576. # CONFIG_CMD_BOOTMENU is not set
  577. # CONFIG_CMD_ADTIMG is not set
  578. CONFIG_CMD_ELF=y
  579. CONFIG_CMD_FDT=y
  580. CONFIG_CMD_GO=y
  581. CONFIG_CMD_RUN=y
  582. CONFIG_CMD_IMI=y
  583. # CONFIG_CMD_IMLS is not set
  584. CONFIG_CMD_XIMG=y
  585. # CONFIG_CMD_SPL is not set
  586. # CONFIG_CMD_THOR_DOWNLOAD is not set
  587. # CONFIG_CMD_ZBOOT is not set
  588. #
  589. # Environment commands
  590. #
  591. # CONFIG_CMD_ASKENV is not set
  592. CONFIG_CMD_EXPORTENV=y
  593. CONFIG_CMD_IMPORTENV=y
  594. CONFIG_CMD_EDITENV=y
  595. # CONFIG_CMD_GREPENV is not set
  596. CONFIG_CMD_SAVEENV=y
  597. # CONFIG_CMD_ERASEENV is not set
  598. CONFIG_CMD_ENV_EXISTS=y
  599. # CONFIG_CMD_ENV_CALLBACK is not set
  600. # CONFIG_CMD_ENV_FLAGS is not set
  601. # CONFIG_CMD_NVEDIT_INDIRECT is not set
  602. # CONFIG_CMD_NVEDIT_INFO is not set
  603. # CONFIG_CMD_NVEDIT_LOAD is not set
  604. # CONFIG_CMD_NVEDIT_SELECT is not set
  605. #
  606. # Memory commands
  607. #
  608. # CONFIG_CMD_BINOP is not set
  609. # CONFIG_CMD_BLOBLIST is not set
  610. CONFIG_CMD_CRC32=y
  611. # CONFIG_CRC32_VERIFY is not set
  612. # CONFIG_CMD_EEPROM is not set
  613. CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS=0
  614. # CONFIG_LOOPW is not set
  615. # CONFIG_CMD_MD5SUM is not set
  616. # CONFIG_CMD_MEMINFO is not set
  617. CONFIG_CMD_MEMORY=y
  618. # CONFIG_CMD_MEM_SEARCH is not set
  619. # CONFIG_CMD_MX_CYCLIC is not set
  620. CONFIG_CMD_RANDOM=y
  621. # CONFIG_CMD_MEMTEST is not set
  622. # CONFIG_CMD_SHA1SUM is not set
  623. # CONFIG_CMD_STRINGS is not set
  624. #
  625. # Compression commands
  626. #
  627. # CONFIG_CMD_LZMADEC is not set
  628. # CONFIG_CMD_UNLZ4 is not set
  629. # CONFIG_CMD_UNZIP is not set
  630. # CONFIG_CMD_ZIP is not set
  631. #
  632. # Device access commands
  633. #
  634. # CONFIG_CMD_ARMFLASH is not set
  635. # CONFIG_CMD_ADC is not set
  636. # CONFIG_CMD_BCB is not set
  637. # CONFIG_CMD_BIND is not set
  638. # CONFIG_CMD_CLK is not set
  639. # CONFIG_CMD_DEMO is not set
  640. # CONFIG_CMD_DFU is not set
  641. CONFIG_CMD_DM=y
  642. CONFIG_CMD_FLASH=y
  643. # CONFIG_CMD_FPGAD is not set
  644. # CONFIG_CMD_FUSE is not set
  645. CONFIG_CMD_GPIO=y
  646. # CONFIG_CMD_GPIO_READ is not set
  647. # CONFIG_CMD_PWM is not set
  648. CONFIG_CMD_GPT=y
  649. CONFIG_RANDOM_UUID=y
  650. # CONFIG_CMD_GPT_RENAME is not set
  651. # CONFIG_CMD_IDE is not set
  652. # CONFIG_CMD_IO is not set
  653. # CONFIG_CMD_IOTRACE is not set
  654. CONFIG_CMD_I2C=y
  655. CONFIG_CMD_LOADB=y
  656. CONFIG_CMD_LOADS=y
  657. # CONFIG_CMD_LSBLK is not set
  658. # CONFIG_CMD_MBR is not set
  659. CONFIG_CMD_MMC=y
  660. # CONFIG_CMD_BKOPS_ENABLE is not set
  661. # CONFIG_CMD_MMC_SWRITE is not set
  662. # CONFIG_CMD_CLONE is not set
  663. # CONFIG_CMD_MTD is not set
  664. # CONFIG_CMD_ONENAND is not set
  665. # CONFIG_CMD_OSD is not set
  666. CONFIG_CMD_PART=y
  667. # CONFIG_CMD_PCI is not set
  668. CONFIG_CMD_PINMUX=y
  669. # CONFIG_CMD_POWEROFF is not set
  670. # CONFIG_CMD_READ is not set
  671. # CONFIG_CMD_SATA is not set
  672. # CONFIG_CMD_SAVES is not set
  673. # CONFIG_CMD_SCSI is not set
  674. # CONFIG_CMD_SDRAM is not set
  675. CONFIG_CMD_SF=y
  676. CONFIG_CMD_SF_TEST=y
  677. CONFIG_CMD_SPI=y
  678. CONFIG_DEFAULT_SPI_BUS=0
  679. CONFIG_DEFAULT_SPI_MODE=0
  680. # CONFIG_CMD_TSI148 is not set
  681. # CONFIG_CMD_UNIVERSE is not set
  682. CONFIG_CMD_USB=y
  683. # CONFIG_CMD_USB_SDP is not set
  684. #
  685. # Shell scripting commands
  686. #
  687. CONFIG_CMD_ECHO=y
  688. CONFIG_CMD_ITEST=y
  689. CONFIG_CMD_SOURCE=y
  690. # CONFIG_CMD_SETEXPR is not set
  691. #
  692. # Android support commands
  693. #
  694. CONFIG_CMD_NET=y
  695. CONFIG_CMD_BOOTP=y
  696. CONFIG_CMD_DHCP=y
  697. # CONFIG_BOOTP_MAY_FAIL is not set
  698. CONFIG_BOOTP_BOOTPATH=y
  699. # CONFIG_BOOTP_VENDOREX is not set
  700. # CONFIG_BOOTP_BOOTFILESIZE is not set
  701. CONFIG_BOOTP_DNS=y
  702. # CONFIG_BOOTP_DNS2 is not set
  703. CONFIG_BOOTP_GATEWAY=y
  704. CONFIG_BOOTP_HOSTNAME=y
  705. # CONFIG_BOOTP_PREFER_SERVERIP is not set
  706. CONFIG_BOOTP_SUBNETMASK=y
  707. # CONFIG_BOOTP_NISDOMAIN is not set
  708. # CONFIG_BOOTP_NTPSERVER is not set
  709. # CONFIG_CMD_PCAP is not set
  710. CONFIG_BOOTP_PXE=y
  711. CONFIG_BOOTP_PXE_CLIENTARCH=0x15
  712. CONFIG_BOOTP_VCI_STRING="U-Boot.armv7"
  713. CONFIG_CMD_TFTPBOOT=y
  714. # CONFIG_CMD_TFTPPUT is not set
  715. # CONFIG_CMD_TFTPSRV is not set
  716. CONFIG_NET_TFTP_VARS=y
  717. # CONFIG_CMD_RARP is not set
  718. CONFIG_CMD_NFS=y
  719. CONFIG_NFS_TIMEOUT=2000
  720. CONFIG_CMD_MII=y
  721. CONFIG_CMD_PING=y
  722. # CONFIG_CMD_CDP is not set
  723. # CONFIG_CMD_SNTP is not set
  724. # CONFIG_CMD_DNS is not set
  725. # CONFIG_CMD_LINK_LOCAL is not set
  726. # CONFIG_CMD_ETHSW is not set
  727. CONFIG_CMD_PXE=y
  728. # CONFIG_CMD_WOL is not set
  729. #
  730. # Misc commands
  731. #
  732. # CONFIG_CMD_BMP is not set
  733. # CONFIG_CMD_BSP is not set
  734. CONFIG_CMD_BLOCK_CACHE=y
  735. CONFIG_CMD_CACHE=y
  736. # CONFIG_CMD_CONITRACE is not set
  737. # CONFIG_CMD_CLS is not set
  738. # CONFIG_CMD_EXCEPTION is not set
  739. # CONFIG_CMD_DATE is not set
  740. CONFIG_CMD_TIME=y
  741. # CONFIG_CMD_GETTIME is not set
  742. CONFIG_CMD_SLEEP=y
  743. # CONFIG_CMD_TIMER is not set
  744. CONFIG_CMD_SOUND=y
  745. CONFIG_CMD_SYSBOOT=y
  746. # CONFIG_CMD_QFW is not set
  747. # CONFIG_CMD_PSTORE is not set
  748. # CONFIG_CMD_TERMINAL is not set
  749. # CONFIG_CMD_UUID is not set
  750. #
  751. # TI specific command line interface
  752. #
  753. # CONFIG_CMD_DDR3 is not set
  754. #
  755. # Power commands
  756. #
  757. CONFIG_CMD_PMIC=y
  758. CONFIG_CMD_REGULATOR=y
  759. #
  760. # Security commands
  761. #
  762. # CONFIG_CMD_AES is not set
  763. # CONFIG_CMD_BLOB is not set
  764. # CONFIG_CMD_HASH is not set
  765. #
  766. # Firmware commands
  767. #
  768. CONFIG_CMD_CROS_EC=y
  769. #
  770. # Filesystem commands
  771. #
  772. # CONFIG_CMD_BTRFS is not set
  773. # CONFIG_CMD_EROFS is not set
  774. CONFIG_CMD_EXT2=y
  775. CONFIG_CMD_EXT4=y
  776. # CONFIG_CMD_EXT4_WRITE is not set
  777. CONFIG_CMD_FAT=y
  778. # CONFIG_CMD_SQUASHFS is not set
  779. CONFIG_CMD_FS_GENERIC=y
  780. # CONFIG_CMD_FS_UUID is not set
  781. # CONFIG_CMD_JFFS2 is not set
  782. # CONFIG_CMD_MTDPARTS is not set
  783. CONFIG_MTDIDS_DEFAULT=""
  784. CONFIG_MTDPARTS_DEFAULT=""
  785. # CONFIG_CMD_REISER is not set
  786. # CONFIG_CMD_ZFS is not set
  787. #
  788. # Debug commands
  789. #
  790. # CONFIG_CMD_DIAG is not set
  791. # CONFIG_CMD_EVENT is not set
  792. # CONFIG_CMD_LOG is not set
  793. # CONFIG_CMD_UBI is not set
  794. # CONFIG_MMC_SPEED_MODE_SET is not set
  795. #
  796. # Partition Types
  797. #
  798. CONFIG_PARTITIONS=y
  799. # CONFIG_MAC_PARTITION is not set
  800. # CONFIG_SPL_MAC_PARTITION is not set
  801. CONFIG_DOS_PARTITION=y
  802. # CONFIG_SPL_DOS_PARTITION is not set
  803. CONFIG_ISO_PARTITION=y
  804. # CONFIG_SPL_ISO_PARTITION is not set
  805. # CONFIG_AMIGA_PARTITION is not set
  806. # CONFIG_SPL_AMIGA_PARTITION is not set
  807. CONFIG_EFI_PARTITION=y
  808. CONFIG_EFI_PARTITION_ENTRIES_NUMBERS=128
  809. CONFIG_EFI_PARTITION_ENTRIES_OFF=0
  810. # CONFIG_SPL_EFI_PARTITION is not set
  811. CONFIG_PARTITION_UUIDS=y
  812. # CONFIG_PARTITION_TYPE_GUID is not set
  813. CONFIG_SUPPORT_OF_CONTROL=y
  814. CONFIG_PYLIBFDT=y
  815. CONFIG_DTOC=y
  816. CONFIG_BINMAN=y
  817. #
  818. # Device Tree Control
  819. #
  820. CONFIG_OF_CONTROL=y
  821. CONFIG_OF_REAL=y
  822. CONFIG_SPL_OF_CONTROL=y
  823. # CONFIG_OF_LIVE is not set
  824. CONFIG_OF_SEPARATE=y
  825. # CONFIG_OF_EMBED is not set
  826. # CONFIG_OF_BOARD is not set
  827. # CONFIG_OF_OMIT_DTB is not set
  828. CONFIG_DEVICE_TREE_INCLUDES=""
  829. CONFIG_OF_LIST="rk3288-veyron-jerry"
  830. # CONFIG_MULTI_DTB_FIT is not set
  831. CONFIG_SPL_OF_LIST="rk3288-veyron-jerry"
  832. CONFIG_OF_SPL_REMOVE_PROPS="pinctrl-0 pinctrl-names clock-names interrupt-parent assigned-clocks assigned-clock-rates assigned-clock-parents"
  833. # CONFIG_OF_DTB_PROPS_REMOVE is not set
  834. CONFIG_SPL_OF_PLATDATA=y
  835. CONFIG_SPL_OF_PLATDATA_PARENT=y
  836. # CONFIG_SPL_OF_PLATDATA_INST is not set
  837. CONFIG_SPL_OF_PLATDATA_DRIVER_RT=y
  838. CONFIG_VPL_OF_REAL=y
  839. #
  840. # Environment
  841. #
  842. CONFIG_ENV_SUPPORT=y
  843. CONFIG_ENV_SOURCE_FILE=""
  844. CONFIG_SAVEENV=y
  845. # CONFIG_ENV_OVERWRITE is not set
  846. CONFIG_ENV_IS_NOWHERE=y
  847. # CONFIG_ENV_IS_IN_EEPROM is not set
  848. # CONFIG_ENV_IS_IN_FAT is not set
  849. # CONFIG_ENV_IS_IN_EXT4 is not set
  850. # CONFIG_ENV_IS_IN_FLASH is not set
  851. # CONFIG_ENV_IS_IN_MMC is not set
  852. # CONFIG_ENV_IS_IN_NAND is not set
  853. # CONFIG_ENV_IS_IN_NVRAM is not set
  854. # CONFIG_ENV_IS_IN_ONENAND is not set
  855. # CONFIG_ENV_IS_IN_REMOTE is not set
  856. # CONFIG_ENV_IS_IN_SPI_FLASH is not set
  857. # CONFIG_SYS_REDUNDAND_ENVIRONMENT is not set
  858. CONFIG_SYS_RELOC_GD_ENV_ADDR=y
  859. # CONFIG_USE_DEFAULT_ENV_FILE is not set
  860. # CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG is not set
  861. # CONFIG_ENV_IMPORT_FDT is not set
  862. # CONFIG_ENV_APPEND is not set
  863. # CONFIG_ENV_WRITEABLE_LIST is not set
  864. # CONFIG_ENV_ACCESS_IGNORE_FORCE is not set
  865. # CONFIG_USE_BOOTFILE is not set
  866. # CONFIG_USE_ETHPRIME is not set
  867. # CONFIG_VERSION_VARIABLE is not set
  868. CONFIG_NET=y
  869. CONFIG_ARP_TIMEOUT=5000
  870. CONFIG_NET_RETRY_COUNT=5
  871. # CONFIG_PROT_UDP is not set
  872. CONFIG_BOOTDEV_ETH=y
  873. # CONFIG_BOOTP_SEND_HOSTNAME is not set
  874. # CONFIG_NET_RANDOM_ETHADDR is not set
  875. # CONFIG_NETCONSOLE is not set
  876. # CONFIG_IP_DEFRAG is not set
  877. # CONFIG_SYS_FAULT_ECHO_LINK_DOWN is not set
  878. CONFIG_TFTP_BLOCKSIZE=1468
  879. # CONFIG_TFTP_PORT is not set
  880. CONFIG_TFTP_WINDOWSIZE=1
  881. # CONFIG_TFTP_TSIZE is not set
  882. # CONFIG_SERVERIP_FROM_PROXYDHCP is not set
  883. CONFIG_SERVERIP_FROM_PROXYDHCP_DELAY_MS=100
  884. # CONFIG_KEEP_SERVERADDR is not set
  885. # CONFIG_UDP_CHECKSUM is not set
  886. # CONFIG_BOOTP_SERVERIP is not set
  887. CONFIG_SYS_RX_ETH_BUFFER=4
  888. #
  889. # Device Drivers
  890. #
  891. #
  892. # Generic Driver Options
  893. #
  894. CONFIG_DM=y
  895. CONFIG_SPL_DM=y
  896. CONFIG_DM_WARN=y
  897. # CONFIG_SPL_DM_WARN is not set
  898. # CONFIG_DM_DEBUG is not set
  899. CONFIG_DM_DEVICE_REMOVE=y
  900. # CONFIG_DM_EVENT is not set
  901. # CONFIG_SPL_DM_DEVICE_REMOVE is not set
  902. CONFIG_DM_STDIO=y
  903. CONFIG_DM_SEQ_ALIAS=y
  904. # CONFIG_SPL_DM_SEQ_ALIAS is not set
  905. CONFIG_SPL_DM_INLINE_OFNODE=y
  906. # CONFIG_DM_DMA is not set
  907. CONFIG_REGMAP=y
  908. CONFIG_SPL_REGMAP=y
  909. CONFIG_SYSCON=y
  910. CONFIG_SPL_SYSCON=y
  911. CONFIG_TPL_SYSCON=y
  912. # CONFIG_DEVRES is not set
  913. CONFIG_SIMPLE_BUS=y
  914. # CONFIG_SPL_SIMPLE_BUS is not set
  915. # CONFIG_SIMPLE_BUS_CORRECT_RANGE is not set
  916. CONFIG_OF_TRANSLATE=y
  917. # CONFIG_SPL_OF_TRANSLATE is not set
  918. # CONFIG_TRANSLATION_OFFSET is not set
  919. CONFIG_DM_DEV_READ_INLINE=y
  920. # CONFIG_ACPIGEN is not set
  921. CONFIG_BOUNCE_BUFFER=y
  922. CONFIG_ADC=y
  923. # CONFIG_ADC_EXYNOS is not set
  924. # CONFIG_ADC_SANDBOX is not set
  925. # CONFIG_SARADC_MESON is not set
  926. CONFIG_SARADC_ROCKCHIP=y
  927. # CONFIG_SATA is not set
  928. # CONFIG_SCSI_AHCI is not set
  929. #
  930. # SATA/SCSI device support
  931. #
  932. # CONFIG_AXI is not set
  933. #
  934. # Bus devices
  935. #
  936. CONFIG_BLK=y
  937. CONFIG_HAVE_BLOCK_DEVICE=y
  938. # CONFIG_SPL_BLK is not set
  939. CONFIG_BLOCK_CACHE=y
  940. # CONFIG_EFI_MEDIA is not set
  941. # CONFIG_IDE is not set
  942. # CONFIG_BOOTCOUNT_LIMIT is not set
  943. #
  944. # Button Support
  945. #
  946. # CONFIG_BUTTON is not set
  947. #
  948. # Cache Controller drivers
  949. #
  950. # CONFIG_CACHE is not set
  951. # CONFIG_L2X0_CACHE is not set
  952. # CONFIG_NCORE_CACHE is not set
  953. # CONFIG_SIFIVE_CCACHE is not set
  954. #
  955. # Clock
  956. #
  957. CONFIG_CLK=y
  958. CONFIG_SPL_CLK=y
  959. # CONFIG_SPL_CLK_CCF is not set
  960. # CONFIG_CLK_CCF is not set
  961. # CONFIG_CLK_CDCE9XX is not set
  962. # CONFIG_CLK_ICS8N3QV01 is not set
  963. # CONFIG_CLK_K210 is not set
  964. # CONFIG_CLK_MPC83XX is not set
  965. # CONFIG_CLK_XLNX_CLKWZRD is not set
  966. # CONFIG_CLK_AT91 is not set
  967. # CONFIG_CLK_SIFIVE is not set
  968. # CONFIG_CLK_TI_AM3_DPLL is not set
  969. # CONFIG_CLK_TI_CTRL is not set
  970. # CONFIG_CLK_TI_GATE is not set
  971. # CONFIG_CLK_K3 is not set
  972. # CONFIG_SPL_CLK_K3 is not set
  973. # CONFIG_CPU is not set
  974. #
  975. # Hardware crypto devices
  976. #
  977. # CONFIG_DM_HASH is not set
  978. # CONFIG_FSL_CAAM is not set
  979. # CONFIG_SYS_FSL_SEC_BE is not set
  980. # CONFIG_SYS_FSL_SEC_LE is not set
  981. # CONFIG_DDR_SPD is not set
  982. #
  983. # Demo for driver model
  984. #
  985. # CONFIG_DM_DEMO is not set
  986. #
  987. # DFU support
  988. #
  989. #
  990. # DMA Support
  991. #
  992. # CONFIG_DMA is not set
  993. # CONFIG_DMA_LPC32XX is not set
  994. # CONFIG_TI_EDMA3 is not set
  995. # CONFIG_DMA_LEGACY is not set
  996. #
  997. # Fastboot support
  998. #
  999. # CONFIG_UDP_FUNCTION_FASTBOOT is not set
  1000. # CONFIG_FIRMWARE is not set
  1001. # CONFIG_ZYNQMP_FIRMWARE is not set
  1002. #
  1003. # FPGA support
  1004. #
  1005. # CONFIG_FPGA_ALTERA is not set
  1006. # CONFIG_FPGA_SOCFPGA is not set
  1007. # CONFIG_FPGA_XILINX is not set
  1008. CONFIG_GPIO=y
  1009. # CONFIG_GPIO_HOG is not set
  1010. # CONFIG_DM_GPIO_LOOKUP_LABEL is not set
  1011. # CONFIG_ALTERA_PIO is not set
  1012. # CONFIG_BCM2835_GPIO is not set
  1013. # CONFIG_DWAPB_GPIO is not set
  1014. # CONFIG_AT91_GPIO is not set
  1015. # CONFIG_ATMEL_PIO4 is not set
  1016. # CONFIG_ASPEED_GPIO is not set
  1017. # CONFIG_DA8XX_GPIO is not set
  1018. # CONFIG_FXL6408_GPIO is not set
  1019. # CONFIG_INTEL_BROADWELL_GPIO is not set
  1020. # CONFIG_INTEL_GPIO is not set
  1021. # CONFIG_INTEL_ICH6_GPIO is not set
  1022. # CONFIG_IMX_RGPIO2P is not set
  1023. # CONFIG_IPROC_GPIO is not set
  1024. # CONFIG_HSDK_CREG_GPIO is not set
  1025. # CONFIG_KIRKWOOD_GPIO is not set
  1026. # CONFIG_LPC32XX_GPIO is not set
  1027. # CONFIG_MAX7320_GPIO is not set
  1028. # CONFIG_MCP230XX_GPIO is not set
  1029. # CONFIG_MSM_GPIO is not set
  1030. # CONFIG_MXC_GPIO is not set
  1031. # CONFIG_MXS_GPIO is not set
  1032. # CONFIG_NPCM_GPIO is not set
  1033. # CONFIG_CMD_PCA953X is not set
  1034. # CONFIG_PCF8575_GPIO is not set
  1035. CONFIG_ROCKCHIP_GPIO=y
  1036. # CONFIG_XILINX_GPIO is not set
  1037. # CONFIG_CMD_TCA642X is not set
  1038. # CONFIG_TEGRA_GPIO is not set
  1039. # CONFIG_TEGRA186_GPIO is not set
  1040. # CONFIG_VYBRID_GPIO is not set
  1041. # CONFIG_SIFIVE_GPIO is not set
  1042. # CONFIG_ZYNQ_GPIO is not set
  1043. # CONFIG_DM_74X164 is not set
  1044. # CONFIG_DM_PCA953X is not set
  1045. # CONFIG_SPL_DM_PCA953X is not set
  1046. # CONFIG_MPC8XXX_GPIO is not set
  1047. # CONFIG_NX_GPIO is not set
  1048. # CONFIG_NOMADIK_GPIO is not set
  1049. # CONFIG_ZYNQMP_GPIO_MODEPIN is not set
  1050. # CONFIG_SLG7XL45106_I2C_GPO is not set
  1051. #
  1052. # Hardware Spinlock Support
  1053. #
  1054. # CONFIG_DM_HWSPINLOCK is not set
  1055. CONFIG_I2C=y
  1056. CONFIG_DM_I2C=y
  1057. CONFIG_SPL_DM_I2C=y
  1058. CONFIG_I2C_CROS_EC_TUNNEL=y
  1059. # CONFIG_I2C_CROS_EC_LDO is not set
  1060. # CONFIG_I2C_SET_DEFAULT_BUS_NUM is not set
  1061. # CONFIG_DM_I2C_GPIO is not set
  1062. # CONFIG_SYS_I2C_IPROC is not set
  1063. # CONFIG_SYS_I2C_FSL is not set
  1064. # CONFIG_SYS_I2C_CADENCE is not set
  1065. # CONFIG_SYS_I2C_DW is not set
  1066. # CONFIG_SYS_I2C_INTEL is not set
  1067. # CONFIG_SYS_I2C_IMX_LPI2C is not set
  1068. # CONFIG_SYS_I2C_MICROCHIP is not set
  1069. # CONFIG_SYS_I2C_MXC is not set
  1070. # CONFIG_SYS_I2C_NEXELL is not set
  1071. # CONFIG_SYS_I2C_OCORES is not set
  1072. CONFIG_SYS_I2C_ROCKCHIP=y
  1073. # CONFIG_SYS_I2C_SOFT is not set
  1074. # CONFIG_SYS_I2C_MV is not set
  1075. # CONFIG_SYS_I2C_MVTWSI is not set
  1076. # CONFIG_SYS_I2C_XILINX_XIIC is not set
  1077. # CONFIG_SYS_I2C_IHS is not set
  1078. CONFIG_I2C_MUX=y
  1079. # CONFIG_SPL_I2C_MUX is not set
  1080. # CONFIG_I2C_ARB_GPIO_CHALLENGE is not set
  1081. # CONFIG_I2C_MUX_PCA954x is not set
  1082. # CONFIG_I2C_MUX_GPIO is not set
  1083. CONFIG_INPUT=y
  1084. # CONFIG_SPL_INPUT is not set
  1085. CONFIG_DM_KEYBOARD=y
  1086. # CONFIG_SPL_DM_KEYBOARD is not set
  1087. CONFIG_KEYBOARD=y
  1088. # CONFIG_APPLE_SPI_KEYB is not set
  1089. CONFIG_CROS_EC_KEYB=y
  1090. # CONFIG_I8042_KEYB is not set
  1091. # CONFIG_TEGRA_KEYBOARD is not set
  1092. # CONFIG_TWL4030_INPUT is not set
  1093. #
  1094. # IOMMU device drivers
  1095. #
  1096. # CONFIG_IOMMU is not set
  1097. #
  1098. # LED Support
  1099. #
  1100. # CONFIG_LED is not set
  1101. # CONFIG_SPL_LED is not set
  1102. # CONFIG_LED_STATUS is not set
  1103. #
  1104. # Mailbox Controller Support
  1105. #
  1106. # CONFIG_DM_MAILBOX is not set
  1107. #
  1108. # Memory Controller drivers
  1109. #
  1110. #
  1111. # Multifunction device drivers
  1112. #
  1113. # CONFIG_MISC is not set
  1114. # CONFIG_SPL_MISC is not set
  1115. CONFIG_CROS_EC=y
  1116. # CONFIG_SPL_CROS_EC is not set
  1117. # CONFIG_CROS_EC_I2C is not set
  1118. # CONFIG_CROS_EC_LPC is not set
  1119. # CONFIG_SPL_CROS_EC_LPC is not set
  1120. # CONFIG_TPL_CROS_EC_LPC is not set
  1121. # CONFIG_VPL_CROS_EC_LPC is not set
  1122. CONFIG_CROS_EC_SPI=y
  1123. # CONFIG_DS4510 is not set
  1124. # CONFIG_FSL_SEC_MON is not set
  1125. # CONFIG_IRQ is not set
  1126. # CONFIG_NUVOTON_NCT6102D is not set
  1127. CONFIG_PWRSEQ=y
  1128. # CONFIG_SPL_PWRSEQ is not set
  1129. # CONFIG_PCA9551_LED is not set
  1130. # CONFIG_TEST_DRV is not set
  1131. # CONFIG_USB_HUB_USB251XB is not set
  1132. # CONFIG_TWL4030_LED is not set
  1133. # CONFIG_WINBOND_W83627 is not set
  1134. # CONFIG_FS_LOADER is not set
  1135. # CONFIG_SPL_FS_LOADER is not set
  1136. # CONFIG_ESM_PMIC is not set
  1137. # CONFIG_SL28CPLD is not set
  1138. #
  1139. # MMC Host controller Support
  1140. #
  1141. CONFIG_MMC=y
  1142. CONFIG_MMC_WRITE=y
  1143. CONFIG_MMC_PWRSEQ=y
  1144. # CONFIG_MMC_BROKEN_CD is not set
  1145. CONFIG_DM_MMC=y
  1146. # CONFIG_SPL_DM_MMC is not set
  1147. # CONFIG_MMC_SPI is not set
  1148. # CONFIG_ARM_PL180_MMCI is not set
  1149. CONFIG_MMC_QUIRKS=y
  1150. CONFIG_MMC_HW_PARTITIONING=y
  1151. # CONFIG_SUPPORT_EMMC_RPMB is not set
  1152. # CONFIG_SUPPORT_EMMC_BOOT is not set
  1153. # CONFIG_MMC_IO_VOLTAGE is not set
  1154. # CONFIG_SPL_MMC_IO_VOLTAGE is not set
  1155. # CONFIG_MMC_HS400_ES_SUPPORT is not set
  1156. # CONFIG_SPL_MMC_HS400_ES_SUPPORT is not set
  1157. # CONFIG_MMC_HS400_SUPPORT is not set
  1158. # CONFIG_SPL_MMC_HS400_SUPPORT is not set
  1159. # CONFIG_MMC_HS200_SUPPORT is not set
  1160. # CONFIG_SPL_MMC_HS200_SUPPORT is not set
  1161. CONFIG_MMC_VERBOSE=y
  1162. # CONFIG_MMC_TRACE is not set
  1163. CONFIG_MMC_DW=y
  1164. # CONFIG_MMC_DW_CORTINA is not set
  1165. # CONFIG_MMC_DW_K3 is not set
  1166. CONFIG_MMC_DW_ROCKCHIP=y
  1167. # CONFIG_MMC_DW_SNPS is not set
  1168. # CONFIG_MMC_MXC is not set
  1169. # CONFIG_PXA_MMC_GENERIC is not set
  1170. # CONFIG_MMC_OMAP_HS is not set
  1171. # CONFIG_MMC_SDHCI is not set
  1172. # CONFIG_MMC_PITON is not set
  1173. # CONFIG_STM32_SDMMC2 is not set
  1174. # CONFIG_FTSDC010 is not set
  1175. # CONFIG_FSL_ESDHC is not set
  1176. # CONFIG_FSL_ESDHC_IMX is not set
  1177. #
  1178. # MTD Support
  1179. #
  1180. CONFIG_MTD=y
  1181. # CONFIG_DM_MTD is not set
  1182. # CONFIG_MTD_NOR_FLASH is not set
  1183. # CONFIG_MTD_CONCAT is not set
  1184. # CONFIG_SYS_MTDPARTS_RUNTIME is not set
  1185. # CONFIG_FLASH_CFI_DRIVER is not set
  1186. # CONFIG_HBMC_AM654 is not set
  1187. # CONFIG_USE_SYS_MAX_FLASH_BANKS is not set
  1188. # CONFIG_MTD_RAW_NAND is not set
  1189. #
  1190. # SPI Flash Support
  1191. #
  1192. CONFIG_DM_SPI_FLASH=y
  1193. CONFIG_SPI_FLASH=y
  1194. CONFIG_SF_DEFAULT_BUS=2
  1195. CONFIG_SF_DEFAULT_CS=0
  1196. CONFIG_SF_DEFAULT_MODE=0x0
  1197. CONFIG_SF_DEFAULT_SPEED=20000000
  1198. # CONFIG_SPI_FLASH_SFDP_SUPPORT is not set
  1199. CONFIG_SPI_FLASH_SMART_HWCAPS=y
  1200. # CONFIG_SPI_FLASH_SOFT_RESET is not set
  1201. # CONFIG_SPI_FLASH_BAR is not set
  1202. CONFIG_SPI_FLASH_UNLOCK_ALL=y
  1203. # CONFIG_SPI_FLASH_ATMEL is not set
  1204. # CONFIG_SPI_FLASH_EON is not set
  1205. CONFIG_SPI_FLASH_GIGADEVICE=y
  1206. # CONFIG_SPI_FLASH_ISSI is not set
  1207. # CONFIG_SPI_FLASH_MACRONIX is not set
  1208. # CONFIG_SPI_FLASH_SPANSION is not set
  1209. # CONFIG_SPI_FLASH_STMICRO is not set
  1210. # CONFIG_SPI_FLASH_SST is not set
  1211. # CONFIG_SPI_FLASH_WINBOND is not set
  1212. # CONFIG_SPI_FLASH_XMC is not set
  1213. # CONFIG_SPI_FLASH_XTX is not set
  1214. CONFIG_SPI_FLASH_USE_4K_SECTORS=y
  1215. # CONFIG_SPI_FLASH_DATAFLASH is not set
  1216. # CONFIG_SPI_FLASH_MTD is not set
  1217. #
  1218. # UBI support
  1219. #
  1220. # CONFIG_UBI_SILENCE_MSG is not set
  1221. # CONFIG_MTD_UBI is not set
  1222. #
  1223. # Multiplexer drivers
  1224. #
  1225. # CONFIG_MULTIPLEXER is not set
  1226. # CONFIG_BITBANGMII is not set
  1227. # CONFIG_MV88E6352_SWITCH is not set
  1228. # CONFIG_PHYLIB is not set
  1229. CONFIG_PHY_RESET_DELAY=0
  1230. # CONFIG_FSL_PFE is not set
  1231. CONFIG_ETH=y
  1232. # CONFIG_DM_ETH is not set
  1233. # CONFIG_DM_ETH_PHY is not set
  1234. CONFIG_NETDEVICES=y
  1235. # CONFIG_PHY_GIGE is not set
  1236. # CONFIG_BCM_SF2_ETH is not set
  1237. # CONFIG_DRIVER_DM9000 is not set
  1238. # CONFIG_EEPRO100 is not set
  1239. # CONFIG_ETH_DESIGNWARE is not set
  1240. # CONFIG_ETHOC is not set
  1241. # CONFIG_FMAN_ENET is not set
  1242. # CONFIG_FTMAC100 is not set
  1243. # CONFIG_KS8851_MLL is not set
  1244. # CONFIG_MACB is not set
  1245. # CONFIG_RGMII is not set
  1246. # CONFIG_MII is not set
  1247. # CONFIG_RMII is not set
  1248. # CONFIG_PCNET is not set
  1249. # CONFIG_RTL8139 is not set
  1250. # CONFIG_RTL8169 is not set
  1251. # CONFIG_SMC911X is not set
  1252. # CONFIG_SUN7I_GMAC is not set
  1253. # CONFIG_SH_ETHER is not set
  1254. # CONFIG_DRIVER_TI_CPSW is not set
  1255. # CONFIG_DRIVER_TI_EMAC is not set
  1256. # CONFIG_DRIVER_TI_KEYSTONE_NET is not set
  1257. # CONFIG_TULIP is not set
  1258. # CONFIG_SYS_DPAA_QBMAN is not set
  1259. # CONFIG_TSEC_ENET is not set
  1260. # CONFIG_NVME is not set
  1261. # CONFIG_NVME_APPLE is not set
  1262. # CONFIG_PCI is not set
  1263. #
  1264. # PCI Endpoint
  1265. #
  1266. # CONFIG_PCI_ENDPOINT is not set
  1267. # CONFIG_X86_PCH7 is not set
  1268. # CONFIG_X86_PCH9 is not set
  1269. #
  1270. # PHY Subsystem
  1271. #
  1272. # CONFIG_PHY is not set
  1273. # CONFIG_SPL_PHY is not set
  1274. # CONFIG_MIPI_DPHY_HELPERS is not set
  1275. #
  1276. # Rockchip PHY driver
  1277. #
  1278. # CONFIG_PHY_ROCKCHIP_INNO_USB2 is not set
  1279. # CONFIG_PHY_ROCKCHIP_PCIE is not set
  1280. # CONFIG_PHY_ROCKCHIP_TYPEC is not set
  1281. # CONFIG_MVEBU_COMPHY_SUPPORT is not set
  1282. #
  1283. # Pin controllers
  1284. #
  1285. CONFIG_PINCTRL=y
  1286. CONFIG_PINCTRL_FULL=y
  1287. CONFIG_PINCTRL_GENERIC=y
  1288. CONFIG_PINMUX=y
  1289. CONFIG_PINCONF=y
  1290. CONFIG_PINCONF_RECURSIVE=y
  1291. CONFIG_SPL_PINCTRL=y
  1292. # CONFIG_SPL_PINCTRL_FULL is not set
  1293. # CONFIG_PINCTRL_AT91 is not set
  1294. # CONFIG_PINCTRL_AT91PIO4 is not set
  1295. # CONFIG_PINCTRL_INTEL is not set
  1296. # CONFIG_PINCTRL_QE is not set
  1297. # CONFIG_PINCTRL_ROCKCHIP_RV1108 is not set
  1298. # CONFIG_PINCTRL_SINGLE is not set
  1299. # CONFIG_PINCTRL_STM32 is not set
  1300. # CONFIG_PINCTRL_STMFX is not set
  1301. # CONFIG_PINCTRL_K210 is not set
  1302. CONFIG_PINCTRL_ROCKCHIP=y
  1303. CONFIG_POWER=y
  1304. # CONFIG_POWER_LEGACY is not set
  1305. # CONFIG_SPL_POWER_LEGACY is not set
  1306. # CONFIG_ACPI_PMC is not set
  1307. # CONFIG_SPL_ACPI_PMC is not set
  1308. # CONFIG_TPL_ACPI_PMC is not set
  1309. #
  1310. # Power Domain Support
  1311. #
  1312. # CONFIG_POWER_DOMAIN is not set
  1313. CONFIG_DM_PMIC=y
  1314. CONFIG_SPL_DM_PMIC=y
  1315. CONFIG_PMIC_CHILDREN=y
  1316. # CONFIG_SPL_PMIC_CHILDREN is not set
  1317. # CONFIG_PMIC_AB8500 is not set
  1318. # CONFIG_PMIC_ACT8846 is not set
  1319. # CONFIG_PMIC_AXP is not set
  1320. # CONFIG_SPL_PMIC_AXP is not set
  1321. # CONFIG_DM_PMIC_DA9063 is not set
  1322. # CONFIG_SPL_DM_PMIC_DA9063 is not set
  1323. # CONFIG_PMIC_AS3722 is not set
  1324. # CONFIG_DM_PMIC_BD71837 is not set
  1325. # CONFIG_SPL_DM_PMIC_BD71837 is not set
  1326. # CONFIG_DM_PMIC_FAN53555 is not set
  1327. # CONFIG_DM_PMIC_MP5416 is not set
  1328. # CONFIG_SPL_DM_PMIC_MP5416 is not set
  1329. # CONFIG_DM_PMIC_PCA9450 is not set
  1330. # CONFIG_SPL_DM_PMIC_PCA9450 is not set
  1331. # CONFIG_DM_PMIC_PFUZE100 is not set
  1332. # CONFIG_SPL_DM_PMIC_PFUZE100 is not set
  1333. # CONFIG_DM_PMIC_MAX77686 is not set
  1334. # CONFIG_DM_PMIC_MAX8998 is not set
  1335. # CONFIG_DM_PMIC_MC34708 is not set
  1336. # CONFIG_PMIC_MAX8997 is not set
  1337. # CONFIG_PMIC_PM8916 is not set
  1338. CONFIG_PMIC_RK8XX=y
  1339. # CONFIG_SPL_PMIC_RK8XX is not set
  1340. # CONFIG_PMIC_S2MPS11 is not set
  1341. # CONFIG_DM_PMIC_SANDBOX is not set
  1342. # CONFIG_PMIC_S5M8767 is not set
  1343. # CONFIG_PMIC_RN5T567 is not set
  1344. # CONFIG_PMIC_TPS65090 is not set
  1345. # CONFIG_PMIC_PALMAS is not set
  1346. # CONFIG_PMIC_LP873X is not set
  1347. # CONFIG_PMIC_LP87565 is not set
  1348. # CONFIG_DM_PMIC_TPS65910 is not set
  1349. # CONFIG_PMIC_STPMIC1 is not set
  1350. # CONFIG_SPL_PMIC_PALMAS is not set
  1351. # CONFIG_SPL_PMIC_LP873X is not set
  1352. # CONFIG_SPL_PMIC_LP87565 is not set
  1353. # CONFIG_PMIC_TPS65941 is not set
  1354. # CONFIG_PMIC_TPS65219 is not set
  1355. # CONFIG_PMIC_TPS65217 is not set
  1356. CONFIG_DM_REGULATOR=y
  1357. # CONFIG_REGULATOR_PWM is not set
  1358. CONFIG_DM_REGULATOR_COMMON=y
  1359. CONFIG_DM_REGULATOR_FIXED=y
  1360. # CONFIG_SPL_DM_REGULATOR_FIXED is not set
  1361. # CONFIG_DM_REGULATOR_GPIO is not set
  1362. CONFIG_REGULATOR_RK8XX=y
  1363. # CONFIG_DM_REGULATOR_PBIAS is not set
  1364. # CONFIG_DM_REGULATOR_TPS62360 is not set
  1365. # CONFIG_DM_REGULATOR_ANATOP is not set
  1366. # CONFIG_DM_REGULATOR_SCMI is not set
  1367. # CONFIG_POWER_MT6323 is not set
  1368. CONFIG_DM_PWM=y
  1369. # CONFIG_PWM_ASPEED is not set
  1370. # CONFIG_PWM_CADENCE_TTC is not set
  1371. # CONFIG_PWM_CROS_EC is not set
  1372. # CONFIG_PWM_EXYNOS is not set
  1373. # CONFIG_PWM_IMX is not set
  1374. # CONFIG_PWM_MESON is not set
  1375. # CONFIG_PWM_MTK is not set
  1376. CONFIG_PWM_ROCKCHIP=y
  1377. # CONFIG_PWM_SANDBOX is not set
  1378. # CONFIG_PWM_SIFIVE is not set
  1379. # CONFIG_PWM_TEGRA is not set
  1380. # CONFIG_PWM_SUNXI is not set
  1381. # CONFIG_U_QE is not set
  1382. CONFIG_RAM=y
  1383. CONFIG_SPL_RAM=y
  1384. CONFIG_TPL_RAM=y
  1385. # CONFIG_STM32_SDRAM is not set
  1386. # CONFIG_MPC83XX_SDRAM is not set
  1387. # CONFIG_K3_DDRSS is not set
  1388. # CONFIG_IMXRT_SDRAM is not set
  1389. CONFIG_RAM_ROCKCHIP=y
  1390. # CONFIG_ROCKCHIP_SDRAM_COMMON is not set
  1391. CONFIG_RAM_ROCKCHIP_DEBUG=y
  1392. #
  1393. # Reboot Mode Support
  1394. #
  1395. # CONFIG_DM_REBOOT_MODE is not set
  1396. #
  1397. # Remote Processor drivers
  1398. #
  1399. #
  1400. # Reset Controller Support
  1401. #
  1402. # CONFIG_DM_RESET is not set
  1403. # CONFIG_RESET_SCMI is not set
  1404. # CONFIG_DM_RNG is not set
  1405. #
  1406. # Real Time Clock
  1407. #
  1408. # CONFIG_DM_RTC is not set
  1409. # CONFIG_SPL_DM_RTC is not set
  1410. # CONFIG_RTC_ENABLE_32KHZ_OUTPUT is not set
  1411. # CONFIG_RTC_PCF8563 is not set
  1412. # CONFIG_RTC_PL031 is not set
  1413. # CONFIG_RTC_S35392A is not set
  1414. # CONFIG_RTC_MC146818 is not set
  1415. # CONFIG_RTC_M41T62 is not set
  1416. # CONFIG_SCSI is not set
  1417. # CONFIG_DM_SCSI is not set
  1418. CONFIG_SERIAL=y
  1419. CONFIG_BAUDRATE=115200
  1420. CONFIG_REQUIRE_SERIAL_CONSOLE=y
  1421. # CONFIG_SPECIFY_CONSOLE_INDEX is not set
  1422. CONFIG_SERIAL_PRESENT=y
  1423. CONFIG_SPL_SERIAL_PRESENT=y
  1424. CONFIG_DM_SERIAL=y
  1425. # CONFIG_SERIAL_RX_BUFFER is not set
  1426. # CONFIG_SERIAL_PUTS is not set
  1427. # CONFIG_SERIAL_SEARCH_ALL is not set
  1428. # CONFIG_SERIAL_PROBE_ALL is not set
  1429. CONFIG_SPL_DM_SERIAL=y
  1430. # CONFIG_VPL_DM_SERIAL is not set
  1431. CONFIG_DEBUG_UART_NS16550=y
  1432. CONFIG_SPL_DEBUG_UART_BASE=0xff690000
  1433. CONFIG_DEBUG_UART_SHIFT=2
  1434. # CONFIG_DEBUG_UART_ANNOUNCE is not set
  1435. # CONFIG_DEBUG_UART_SKIP_INIT is not set
  1436. # CONFIG_DEBUG_UART_NS16550_CHECK_ENABLED is not set
  1437. # CONFIG_ALTERA_JTAG_UART is not set
  1438. # CONFIG_ALTERA_UART is not set
  1439. # CONFIG_ARC_SERIAL is not set
  1440. # CONFIG_ARM_DCC is not set
  1441. # CONFIG_ATMEL_USART is not set
  1442. # CONFIG_BCM6345_SERIAL is not set
  1443. # CONFIG_COREBOOT_SERIAL is not set
  1444. # CONFIG_CORTINA_UART is not set
  1445. # CONFIG_FSL_LINFLEXUART is not set
  1446. # CONFIG_FSL_LPUART is not set
  1447. # CONFIG_MVEBU_A3700_UART is not set
  1448. # CONFIG_MCFUART is not set
  1449. # CONFIG_NULLDEV_SERIAL is not set
  1450. CONFIG_SYS_NS16550=y
  1451. # CONFIG_NS16550_DYNAMIC is not set
  1452. # CONFIG_PL01X_SERIAL is not set
  1453. CONFIG_ROCKCHIP_SERIAL=y
  1454. # CONFIG_XILINX_UARTLITE is not set
  1455. # CONFIG_MSM_SERIAL is not set
  1456. # CONFIG_MSM_GENI_SERIAL is not set
  1457. # CONFIG_OMAP_SERIAL is not set
  1458. # CONFIG_PXA_SERIAL is not set
  1459. # CONFIG_SIFIVE_SERIAL is not set
  1460. # CONFIG_ZYNQ_SERIAL is not set
  1461. # CONFIG_MTK_SERIAL is not set
  1462. # CONFIG_MT7620_SERIAL is not set
  1463. # CONFIG_NPCM_SERIAL is not set
  1464. # CONFIG_SMEM is not set
  1465. #
  1466. # Sound support
  1467. #
  1468. CONFIG_SOUND=y
  1469. CONFIG_I2S=y
  1470. CONFIG_I2S_ROCKCHIP=y
  1471. # CONFIG_I2S_SAMSUNG is not set
  1472. # CONFIG_SOUND_DA7219 is not set
  1473. # CONFIG_SOUND_I8254 is not set
  1474. # CONFIG_SOUND_INTEL_HDA is not set
  1475. # CONFIG_SOUND_IVYBRIDGE is not set
  1476. # CONFIG_I2S_TEGRA is not set
  1477. # CONFIG_SOUND_MAX98088 is not set
  1478. # CONFIG_SOUND_MAX98090 is not set
  1479. # CONFIG_SOUND_MAX98095 is not set
  1480. # CONFIG_SOUND_RT5677 is not set
  1481. #
  1482. # SOC (System On Chip) specific Drivers
  1483. #
  1484. # CONFIG_SOC_DEVICE is not set
  1485. # CONFIG_SOC_TI is not set
  1486. CONFIG_SPI=y
  1487. CONFIG_DM_SPI=y
  1488. CONFIG_SPI_MEM=y
  1489. # CONFIG_ALTERA_SPI is not set
  1490. # CONFIG_APPLE_SPI is not set
  1491. # CONFIG_ATCSPI200_SPI is not set
  1492. # CONFIG_ATMEL_SPI is not set
  1493. # CONFIG_BCMSTB_SPI is not set
  1494. # CONFIG_CORTINA_SFLASH is not set
  1495. # CONFIG_CADENCE_QSPI is not set
  1496. # CONFIG_CF_SPI is not set
  1497. # CONFIG_DESIGNWARE_SPI is not set
  1498. # CONFIG_EXYNOS_SPI is not set
  1499. # CONFIG_FSL_DSPI is not set
  1500. # CONFIG_FSL_QSPI is not set
  1501. # CONFIG_ICH_SPI is not set
  1502. # CONFIG_IPROC_QSPI is not set
  1503. # CONFIG_KIRKWOOD_SPI is not set
  1504. # CONFIG_MPC8XXX_SPI is not set
  1505. # CONFIG_MTK_SNOR is not set
  1506. # CONFIG_MTK_SNFI_SPI is not set
  1507. # CONFIG_MVEBU_A3700_SPI is not set
  1508. # CONFIG_MXS_SPI is not set
  1509. # CONFIG_SPI_MXIC is not set
  1510. # CONFIG_NPCM_FIU_SPI is not set
  1511. # CONFIG_NXP_FSPI is not set
  1512. # CONFIG_OMAP3_SPI is not set
  1513. # CONFIG_PL022_SPI is not set
  1514. # CONFIG_ROCKCHIP_SFC is not set
  1515. CONFIG_ROCKCHIP_SPI=y
  1516. # CONFIG_SPI_SIFIVE is not set
  1517. # CONFIG_SOFT_SPI is not set
  1518. # CONFIG_SPI_SUNXI is not set
  1519. # CONFIG_TEGRA114_SPI is not set
  1520. # CONFIG_TEGRA20_SFLASH is not set
  1521. # CONFIG_TEGRA20_SLINK is not set
  1522. # CONFIG_TEGRA210_QSPI is not set
  1523. # CONFIG_TI_QSPI is not set
  1524. # CONFIG_XILINX_SPI is not set
  1525. # CONFIG_ZYNQ_SPI is not set
  1526. # CONFIG_ZYNQ_QSPI is not set
  1527. # CONFIG_ZYNQMP_GQSPI is not set
  1528. # CONFIG_FSL_ESPI is not set
  1529. # CONFIG_SH_QSPI is not set
  1530. # CONFIG_MXC_SPI is not set
  1531. #
  1532. # SPMI support
  1533. #
  1534. # CONFIG_SPMI is not set
  1535. # CONFIG_SYSINFO is not set
  1536. #
  1537. # System reset device drivers
  1538. #
  1539. CONFIG_SYSRESET=y
  1540. CONFIG_SPL_SYSRESET=y
  1541. CONFIG_SYSRESET_CMD_RESET=y
  1542. # CONFIG_POWEROFF_GPIO is not set
  1543. # CONFIG_SYSRESET_GPIO is not set
  1544. # CONFIG_SYSRESET_SYSCON is not set
  1545. # CONFIG_SYSRESET_WATCHDOG is not set
  1546. # CONFIG_SYSRESET_RESETCTL is not set
  1547. # CONFIG_SYSRESET_MPC83XX is not set
  1548. # CONFIG_TEE is not set
  1549. # CONFIG_DM_THERMAL is not set
  1550. #
  1551. # Timer Support
  1552. #
  1553. # CONFIG_TIMER is not set
  1554. #
  1555. # TPM support
  1556. #
  1557. CONFIG_USB=y
  1558. CONFIG_DM_USB=y
  1559. # CONFIG_SPL_DM_USB is not set
  1560. # CONFIG_DM_USB_GADGET is not set
  1561. #
  1562. # USB Host Controller Drivers
  1563. #
  1564. CONFIG_USB_HOST=y
  1565. # CONFIG_USB_XHCI_HCD is not set
  1566. # CONFIG_USB_EHCI_HCD is not set
  1567. # CONFIG_USB_OHCI_HCD is not set
  1568. # CONFIG_USB_UHCI_HCD is not set
  1569. CONFIG_USB_DWC2=y
  1570. CONFIG_USB_DWC2_BUFFER_SIZE=64
  1571. # CONFIG_USB_R8A66597_HCD is not set
  1572. #
  1573. # Legacy MUSB Support
  1574. #
  1575. # CONFIG_USB_MUSB_HCD is not set
  1576. # CONFIG_USB_MUSB_UDC is not set
  1577. #
  1578. # MUSB Controller Driver
  1579. #
  1580. # CONFIG_USB_MUSB_HOST is not set
  1581. # CONFIG_USB_MUSB_PIO_ONLY is not set
  1582. #
  1583. # USB Phy
  1584. #
  1585. # CONFIG_TWL4030_USB is not set
  1586. CONFIG_ROCKCHIP_USB2_PHY=y
  1587. #
  1588. # ULPI drivers
  1589. #
  1590. #
  1591. # USB peripherals
  1592. #
  1593. CONFIG_USB_STORAGE=y
  1594. # CONFIG_USB_KEYBOARD is not set
  1595. # CONFIG_USB_HOST_ETHER is not set
  1596. # CONFIG_USB_GADGET is not set
  1597. #
  1598. # UFS Host Controller Support
  1599. #
  1600. # CONFIG_TI_J721E_UFS is not set
  1601. #
  1602. # Graphics support
  1603. #
  1604. CONFIG_DM_VIDEO=y
  1605. CONFIG_VIDEO_LOGO=y
  1606. CONFIG_BACKLIGHT=y
  1607. CONFIG_VIDEO_PCI_DEFAULT_FB_SIZE=0
  1608. # CONFIG_VIDEO_COPY is not set
  1609. CONFIG_BACKLIGHT_PWM=y
  1610. # CONFIG_BACKLIGHT_GPIO is not set
  1611. CONFIG_CMD_VIDCONSOLE=y
  1612. # CONFIG_VIDEO_BPP8 is not set
  1613. CONFIG_VIDEO_BPP16=y
  1614. CONFIG_VIDEO_BPP32=y
  1615. CONFIG_VIDEO_ANSI=y
  1616. # CONFIG_VIDEO_MIPI_DSI is not set
  1617. CONFIG_CONSOLE_NORMAL=y
  1618. # CONFIG_CONSOLE_ROTATION is not set
  1619. CONFIG_CONSOLE_TRUETYPE=y
  1620. # CONFIG_DM_PANEL_HX8238D is not set
  1621. CONFIG_CONSOLE_TRUETYPE_SIZE=18
  1622. CONFIG_SYS_WHITE_ON_BLACK=y
  1623. # CONFIG_NO_FB_CLEAR is not set
  1624. CONFIG_PANEL=y
  1625. CONFIG_SIMPLE_PANEL=y
  1626. #
  1627. # TrueType Fonts
  1628. #
  1629. CONFIG_CONSOLE_TRUETYPE_NIMBUS=y
  1630. # CONFIG_CONSOLE_TRUETYPE_ANKACODER is not set
  1631. # CONFIG_CONSOLE_TRUETYPE_RUFSCRIPT is not set
  1632. # CONFIG_CONSOLE_TRUETYPE_CANTORAONE is not set
  1633. # CONFIG_VIDCONSOLE_AS_LCD is not set
  1634. # CONFIG_VIDEO_VESA is not set
  1635. # CONFIG_VIDEO_LCD_ANX9804 is not set
  1636. # CONFIG_ATMEL_LCD_BGR555 is not set
  1637. # CONFIG_VIDEO_BCM2835 is not set
  1638. # CONFIG_VIDEO_LCD_ORISETECH_OTM8009A is not set
  1639. # CONFIG_VIDEO_LCD_RAYDIUM_RM68200 is not set
  1640. # CONFIG_VIDEO_LCD_SSD2828 is not set
  1641. # CONFIG_VIDEO_LCD_TDO_TL070WSH30 is not set
  1642. # CONFIG_VIDEO_LCD_HITACHI_TX18D42VM is not set
  1643. # CONFIG_VIDEO_MESON is not set
  1644. # CONFIG_VIDEO_MVEBU is not set
  1645. CONFIG_I2C_EDID=y
  1646. CONFIG_DISPLAY=y
  1647. # CONFIG_NXP_TDA19988 is not set
  1648. # CONFIG_ATMEL_HLCD is not set
  1649. # CONFIG_AM335X_LCD is not set
  1650. # CONFIG_LOGICORE_DP_TX is not set
  1651. CONFIG_VIDEO_ROCKCHIP=y
  1652. CONFIG_VIDEO_ROCKCHIP_MAX_XRES=3840
  1653. CONFIG_VIDEO_ROCKCHIP_MAX_YRES=2160
  1654. CONFIG_DISPLAY_ROCKCHIP_EDP=y
  1655. # CONFIG_DISPLAY_ROCKCHIP_LVDS is not set
  1656. CONFIG_DISPLAY_ROCKCHIP_HDMI=y
  1657. # CONFIG_DISPLAY_ROCKCHIP_MIPI is not set
  1658. # CONFIG_VIDEO_ARM_MALIDP is not set
  1659. # CONFIG_VIDEO_STM32 is not set
  1660. # CONFIG_VIDEO_TEGRA20 is not set
  1661. # CONFIG_VIDEO_TEGRA124 is not set
  1662. # CONFIG_VIDEO_BRIDGE is not set
  1663. # CONFIG_VIDEO_MXS is not set
  1664. # CONFIG_VIDEO_SEPS525 is not set
  1665. CONFIG_CONSOLE_SCROLL_LINES=1
  1666. # CONFIG_LCD is not set
  1667. CONFIG_VIDEO_DW_HDMI=y
  1668. # CONFIG_VIDEO_SIMPLE is not set
  1669. # CONFIG_VIDEO_DT_SIMPLEFB is not set
  1670. # CONFIG_VIDEO_MCDE_SIMPLE is not set
  1671. # CONFIG_OSD is not set
  1672. # CONFIG_SPLASH_SCREEN is not set
  1673. CONFIG_VIDEO_BMP_RLE8=y
  1674. # CONFIG_BMP_16BPP is not set
  1675. # CONFIG_BMP_24BPP is not set
  1676. # CONFIG_BMP_32BPP is not set
  1677. # CONFIG_VIDEO_VCXK is not set
  1678. #
  1679. # VirtIO Drivers
  1680. #
  1681. # CONFIG_VIRTIO_MMIO is not set
  1682. #
  1683. # 1-Wire support
  1684. #
  1685. # CONFIG_W1 is not set
  1686. #
  1687. # 1-wire EEPROM support
  1688. #
  1689. # CONFIG_W1_EEPROM is not set
  1690. #
  1691. # Watchdog Timer Support
  1692. #
  1693. # CONFIG_WATCHDOG is not set
  1694. CONFIG_WATCHDOG_TIMEOUT_MSECS=60000
  1695. # CONFIG_IMX_WATCHDOG is not set
  1696. # CONFIG_ULP_WATCHDOG is not set
  1697. # CONFIG_DESIGNWARE_WATCHDOG is not set
  1698. # CONFIG_WDT is not set
  1699. # CONFIG_SPL_WDT is not set
  1700. # CONFIG_PVBLOCK is not set
  1701. # CONFIG_PHYS_TO_BUS is not set
  1702. #
  1703. # File systems
  1704. #
  1705. # CONFIG_FS_BTRFS is not set
  1706. # CONFIG_FS_CBFS is not set
  1707. # CONFIG_SPL_FS_CBFS is not set
  1708. CONFIG_FS_EXT4=y
  1709. # CONFIG_EXT4_WRITE is not set
  1710. CONFIG_FS_FAT=y
  1711. CONFIG_FAT_WRITE=y
  1712. CONFIG_FS_FAT_MAX_CLUSTSIZE=65536
  1713. # CONFIG_FS_JFFS2 is not set
  1714. # CONFIG_UBIFS_SILENCE_MSG is not set
  1715. # CONFIG_FS_CRAMFS is not set
  1716. # CONFIG_YAFFS2 is not set
  1717. # CONFIG_FS_SQUASHFS is not set
  1718. # CONFIG_FS_EROFS is not set
  1719. #
  1720. # Library routines
  1721. #
  1722. # CONFIG_ADDR_MAP is not set
  1723. # CONFIG_PHYSMEM is not set
  1724. # CONFIG_BCH is not set
  1725. CONFIG_BINMAN_FDT=y
  1726. # CONFIG_CC_OPTIMIZE_LIBS_FOR_SPEED is not set
  1727. # CONFIG_DYNAMIC_CRC_TABLE is not set
  1728. CONFIG_HAVE_PRIVATE_LIBGCC=y
  1729. CONFIG_LIB_UUID=y
  1730. CONFIG_PRINTF=y
  1731. CONFIG_SPL_PRINTF=y
  1732. CONFIG_SPRINTF=y
  1733. CONFIG_SPL_SPRINTF=y
  1734. CONFIG_STRTO=y
  1735. CONFIG_SPL_STRTO=y
  1736. # CONFIG_USE_PRIVATE_LIBGCC is not set
  1737. CONFIG_SYS_HZ=1000
  1738. CONFIG_SPL_USE_TINY_PRINTF=y
  1739. # CONFIG_PANIC_HANG is not set
  1740. CONFIG_REGEX=y
  1741. CONFIG_LIB_RAND=y
  1742. # CONFIG_LIB_HW_RAND is not set
  1743. CONFIG_SUPPORT_ACPI=y
  1744. # CONFIG_GENERATE_ACPI_TABLE is not set
  1745. CONFIG_SPL_TINY_MEMSET=y
  1746. # CONFIG_TPL_TINY_MEMSET is not set
  1747. # CONFIG_BITREVERSE is not set
  1748. # CONFIG_TRACE is not set
  1749. # CONFIG_CIRCBUF is not set
  1750. CONFIG_CMD_DHRYSTONE=y
  1751. #
  1752. # Security support
  1753. #
  1754. # CONFIG_AES is not set
  1755. # CONFIG_ECDSA is not set
  1756. # CONFIG_RSA is not set
  1757. # CONFIG_TPM is not set
  1758. # CONFIG_SPL_TPM is not set
  1759. #
  1760. # Android Verified Boot
  1761. #
  1762. #
  1763. # Hashing Support
  1764. #
  1765. # CONFIG_BLAKE2 is not set
  1766. # CONFIG_SHA1 is not set
  1767. # CONFIG_SHA256 is not set
  1768. # CONFIG_SHA512 is not set
  1769. # CONFIG_SHA384 is not set
  1770. # CONFIG_SHA_HW_ACCEL is not set
  1771. # CONFIG_SPL_SHA1 is not set
  1772. # CONFIG_SPL_SHA256 is not set
  1773. # CONFIG_SPL_SHA512 is not set
  1774. # CONFIG_SPL_SHA384 is not set
  1775. # CONFIG_SPL_SHA_HW_ACCEL is not set
  1776. # CONFIG_MD5 is not set
  1777. CONFIG_CRC32=y
  1778. #
  1779. # Compression Support
  1780. #
  1781. # CONFIG_LZ4 is not set
  1782. # CONFIG_LZMA is not set
  1783. # CONFIG_LZO is not set
  1784. CONFIG_GZIP=y
  1785. # CONFIG_ZLIB_UNCOMPRESS is not set
  1786. # CONFIG_BZIP2 is not set
  1787. CONFIG_ZLIB=y
  1788. # CONFIG_ZSTD is not set
  1789. # CONFIG_SPL_LZ4 is not set
  1790. # CONFIG_SPL_LZMA is not set
  1791. # CONFIG_VPL_LZMA is not set
  1792. # CONFIG_SPL_LZO is not set
  1793. # CONFIG_SPL_GZIP is not set
  1794. # CONFIG_SPL_ZSTD is not set
  1795. CONFIG_ERRNO_STR=y
  1796. # CONFIG_HEXDUMP is not set
  1797. # CONFIG_GETOPT is not set
  1798. CONFIG_OF_LIBFDT=y
  1799. CONFIG_OF_LIBFDT_ASSUME_MASK=0
  1800. # CONFIG_OF_LIBFDT_OVERLAY is not set
  1801. CONFIG_SPL_OF_LIBFDT=y
  1802. CONFIG_SPL_OF_LIBFDT_ASSUME_MASK=0xff
  1803. # CONFIG_VPL_OF_LIBFDT is not set
  1804. #
  1805. # System tables
  1806. #
  1807. # CONFIG_LIB_RATIONAL is not set
  1808. # CONFIG_SPL_LIB_RATIONAL is not set
  1809. # CONFIG_SMBIOS_PARSER is not set
  1810. # CONFIG_OPTEE_LIB is not set
  1811. # CONFIG_OPTEE_IMAGE is not set
  1812. # CONFIG_BOOTM_OPTEE is not set
  1813. # CONFIG_TEST_FDTDEC is not set
  1814. CONFIG_LIB_ELF=y
  1815. CONFIG_LMB=y
  1816. CONFIG_LMB_USE_MAX_REGIONS=y
  1817. CONFIG_LMB_MAX_REGIONS=8
  1818. # CONFIG_PHANDLE_CHECK_SEQ is not set
  1819. # CONFIG_UNIT_TEST is not set
  1820. # CONFIG_SPL_UNIT_TEST is not set
  1821. #
  1822. # Tools options
  1823. #
  1824. CONFIG_MKIMAGE_DTC_PATH="dtc"
  1825. CONFIG_TOOLS_CRC32=y
  1826. CONFIG_TOOLS_LIBCRYPTO=y
  1827. CONFIG_TOOLS_FIT=y
  1828. CONFIG_TOOLS_FIT_FULL_CHECK=y
  1829. CONFIG_TOOLS_FIT_PRINT=y
  1830. CONFIG_TOOLS_FIT_RSASSA_PSS=y
  1831. CONFIG_TOOLS_FIT_SIGNATURE=y
  1832. CONFIG_TOOLS_FIT_SIGNATURE_MAX_SIZE=0x10000000
  1833. CONFIG_TOOLS_FIT_VERBOSE=y
  1834. CONFIG_TOOLS_MD5=y
  1835. CONFIG_TOOLS_OF_LIBFDT=y
  1836. CONFIG_TOOLS_SHA1=y
  1837. CONFIG_TOOLS_SHA256=y
  1838. CONFIG_TOOLS_SHA384=y
  1839. CONFIG_TOOLS_SHA512=y
  1840. # CONFIG_TOOLS_MKEFICAPSULE is not set