Sumit Garg | b7c19ea | 2017-03-23 13:48:17 +0530 | [diff] [blame] | 1 | CONFIG_ARM=y |
| 2 | CONFIG_TARGET_LS1046AQDS=y |
Tom Rini | 278b90c | 2018-02-03 12:10:38 -0500 | [diff] [blame] | 3 | CONFIG_SYS_TEXT_BASE=0x60100000 |
Udit Agarwal | 5536c3c | 2019-11-07 16:11:32 +0000 | [diff] [blame] | 4 | CONFIG_NXP_ESBC=y |
Prabhakar Kushwaha | 910e8fd | 2019-03-03 21:57:54 +0530 | [diff] [blame] | 5 | CONFIG_FSL_LS_PPA=y |
Tom Rini | a09fea1 | 2019-11-18 20:02:10 -0500 | [diff] [blame] | 6 | CONFIG_ENV_SIZE=0x20000 |
Tom Rini | d168bcb | 2019-04-29 15:54:04 -0400 | [diff] [blame] | 7 | CONFIG_NR_DRAM_BANKS=2 |
Peng Ma | 5e1806d | 2019-01-30 19:14:47 +0800 | [diff] [blame] | 8 | CONFIG_AHCI=y |
Tom Rini | fa2c146 | 2018-02-10 16:54:38 -0500 | [diff] [blame] | 9 | CONFIG_DISTRO_DEFAULTS=y |
Sumit Garg | b7c19ea | 2017-03-23 13:48:17 +0530 | [diff] [blame] | 10 | CONFIG_FIT_VERBOSE=y |
| 11 | CONFIG_OF_BOARD_SETUP=y |
Sumit Garg | b7c19ea | 2017-03-23 13:48:17 +0530 | [diff] [blame] | 12 | CONFIG_BOOTDELAY=10 |
Sam Protsenko | 5abc1a4 | 2017-08-14 20:22:17 +0300 | [diff] [blame] | 13 | CONFIG_USE_BOOTARGS=y |
| 14 | CONFIG_BOOTARGS="console=ttyS0,115200 root=/dev/ram0 earlycon=uart8250,mmio,0x21c0500 mtdparts=60000000.nor:2m@0x100000(nor_bank0_uboot),40m@0x1100000(nor_bank0_fit),7m(nor_bank0_user),2m@0x4100000(nor_bank4_uboot),40m@0x5100000(nor_bank4_fit),-(nor_bank4_user);7e800000.flash:4m(nand_uboot),36m(nand_kernel),472m(nand_free);spi0.0:2m(uboot),14m(free)" |
Tom Rini | fa2c146 | 2018-02-10 16:54:38 -0500 | [diff] [blame] | 15 | # CONFIG_USE_BOOTCOMMAND is not set |
Adam Ford | 8ccf98b | 2018-07-29 13:13:29 -0500 | [diff] [blame] | 16 | CONFIG_MISC_INIT_R=y |
Sumit Garg | b7c19ea | 2017-03-23 13:48:17 +0530 | [diff] [blame] | 17 | CONFIG_CMD_BOOTZ=y |
Tuomas Tynkkynen | ad12dc1 | 2017-10-08 21:48:01 +0300 | [diff] [blame] | 18 | CONFIG_CMD_IMLS=y |
Sumit Garg | b7c19ea | 2017-03-23 13:48:17 +0530 | [diff] [blame] | 19 | CONFIG_CMD_GREPENV=y |
Sumit Garg | b7c19ea | 2017-03-23 13:48:17 +0530 | [diff] [blame] | 20 | CONFIG_CMD_MEMINFO=y |
Tom Rini | 8866312 | 2017-08-14 19:58:53 -0400 | [diff] [blame] | 21 | CONFIG_CMD_MEMTEST=y |
Sumit Garg | b7c19ea | 2017-03-23 13:48:17 +0530 | [diff] [blame] | 22 | CONFIG_CMD_GPT=y |
Simon Glass | 6500ec7 | 2017-08-04 16:34:34 -0600 | [diff] [blame] | 23 | CONFIG_CMD_I2C=y |
Sumit Garg | b7c19ea | 2017-03-23 13:48:17 +0530 | [diff] [blame] | 24 | CONFIG_CMD_MMC=y |
Tom Rini | 8f1a80e | 2017-07-28 21:31:42 -0400 | [diff] [blame] | 25 | CONFIG_CMD_NAND=y |
Simon Glass | 6500ec7 | 2017-08-04 16:34:34 -0600 | [diff] [blame] | 26 | CONFIG_CMD_PCI=y |
Tom Rini | 877a1a3 | 2017-08-11 11:20:19 -0400 | [diff] [blame] | 27 | CONFIG_CMD_USB=y |
Sumit Garg | b7c19ea | 2017-03-23 13:48:17 +0530 | [diff] [blame] | 28 | CONFIG_CMD_CACHE=y |
Siva Durga Prasad Paladugu | 0fd2290c | 2018-06-19 12:24:23 +0200 | [diff] [blame] | 29 | CONFIG_MP=y |
Tom Rini | 43ede0b | 2017-10-22 17:55:07 -0400 | [diff] [blame] | 30 | CONFIG_MTDPARTS_DEFAULT="mtdparts=60000000.nor:2m@0x100000(nor_bank0_uboot),40m@0x1100000(nor_bank0_fit),7m(nor_bank0_user),2m@0x4100000(nor_bank4_uboot),40m@0x5100000(nor_bank4_fit),-(nor_bank4_user);7e800000.flash:4m(nand_uboot),36m(nand_kernel),472m(nand_free);spi0.0:2m(uboot),14m(free)" |
Sumit Garg | b7c19ea | 2017-03-23 13:48:17 +0530 | [diff] [blame] | 31 | CONFIG_OF_CONTROL=y |
Tom Rini | 8c5cad0 | 2018-09-03 15:26:12 -0400 | [diff] [blame] | 32 | CONFIG_DEFAULT_DEVICE_TREE="fsl-ls1046a-qds-duart" |
Sumit Garg | b7c19ea | 2017-03-23 13:48:17 +0530 | [diff] [blame] | 33 | CONFIG_DM=y |
Peng Ma | 5e1806d | 2019-01-30 19:14:47 +0800 | [diff] [blame] | 34 | CONFIG_SATA_CEVA=y |
Adam Ford | 2fe88d4 | 2018-10-14 15:10:50 -0500 | [diff] [blame] | 35 | CONFIG_DM_MMC=y |
Mario Six | 07dea2e | 2018-03-28 14:38:19 +0200 | [diff] [blame] | 36 | CONFIG_FSL_ESDHC=y |
Tom Rini | 0cfccb5 | 2019-12-04 17:18:38 -0500 | [diff] [blame] | 37 | CONFIG_MTD=y |
Sumit Garg | b7c19ea | 2017-03-23 13:48:17 +0530 | [diff] [blame] | 38 | CONFIG_MTD_NOR_FLASH=y |
Adam Ford | 2fe88d4 | 2018-10-14 15:10:50 -0500 | [diff] [blame] | 39 | CONFIG_FLASH_CFI_DRIVER=y |
| 40 | CONFIG_SYS_FLASH_USE_BUFFER_WRITE=y |
| 41 | CONFIG_SYS_FLASH_CFI=y |
Tom Rini | 0cfccb5 | 2019-12-04 17:18:38 -0500 | [diff] [blame] | 42 | CONFIG_MTD_RAW_NAND=y |
Patrick Delaunay | 14453fb | 2019-02-27 15:20:36 +0100 | [diff] [blame] | 43 | CONFIG_SF_DEFAULT_BUS=1 |
Alexandru Gagniuc | 3146f0c | 2017-08-01 17:19:59 -0700 | [diff] [blame] | 44 | CONFIG_PHYLIB=y |
Sumit Garg | b7c19ea | 2017-03-23 13:48:17 +0530 | [diff] [blame] | 45 | CONFIG_E1000=y |
Tom Rini | cc1e98b | 2019-05-12 07:59:12 -0400 | [diff] [blame] | 46 | CONFIG_FMAN_ENET=y |
Sumit Garg | b7c19ea | 2017-03-23 13:48:17 +0530 | [diff] [blame] | 47 | CONFIG_PCI=y |
| 48 | CONFIG_DM_PCI=y |
| 49 | CONFIG_DM_PCI_COMPAT=y |
| 50 | CONFIG_PCIE_LAYERSCAPE=y |
Tom Rini | cc1e98b | 2019-05-12 07:59:12 -0400 | [diff] [blame] | 51 | CONFIG_SYS_QE_FMAN_FW_IN_NOR=y |
Peng Ma | 5e1806d | 2019-01-30 19:14:47 +0800 | [diff] [blame] | 52 | CONFIG_DM_SCSI=y |
Sumit Garg | b7c19ea | 2017-03-23 13:48:17 +0530 | [diff] [blame] | 53 | CONFIG_SYS_NS16550=y |
Adam Ford | f1b1f77 | 2018-04-15 13:51:26 -0400 | [diff] [blame] | 54 | CONFIG_SPI=y |
Sumit Garg | b7c19ea | 2017-03-23 13:48:17 +0530 | [diff] [blame] | 55 | CONFIG_DM_SPI=y |
| 56 | CONFIG_FSL_DSPI=y |
| 57 | CONFIG_USB=y |
| 58 | CONFIG_DM_USB=y |
Tom Rini | ecad705 | 2017-08-25 17:50:26 -0400 | [diff] [blame] | 59 | CONFIG_USB_XHCI_HCD=y |
| 60 | CONFIG_USB_XHCI_DWC3=y |
Sumit Garg | b7c19ea | 2017-03-23 13:48:17 +0530 | [diff] [blame] | 61 | CONFIG_RSA=y |
Mian Yousaf Kaukab | 1eb41fc | 2019-01-29 16:38:36 +0100 | [diff] [blame] | 62 | CONFIG_EFI_LOADER_BOUNCE_BUFFER=y |