History log of /rk3399_rockchip-uboot/drivers/mtd/nand/ (Results 151 – 175 of 943)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
fd817f1d17-May-2020 Jon Lin <jon.lin@rock-chips.com>

mtd: nand: fix error in BBT bit operation

Change-Id: I51aab1342d8ded7ac6c19612d27abb8799b85850
Signed-off-by: Jon Lin <jon.lin@rock-chips.com>

29f0ea3b27-Apr-2020 Jon Lin <jon.lin@rock-chips.com>

mtd: nand: spi: select MTD_NAND_BBT_USING_FLASH

Change-Id: I41a287ab79886982a5f12815afce0641fa641b45
Signed-off-by: Jon Lin <jon.lin@rock-chips.com>

53bfae0327-Apr-2020 Jon Lin <jon.lin@rock-chips.com>

mtd: nand: add BBT using flash management strategy

Change-Id: Ib71dfbcf68283d1118742ab29079cab395ff99ca
Signed-off-by: Jon Lin <jon.lin@rock-chips.com>

b8af31a727-Apr-2020 Jon Lin <jon.lin@rock-chips.com>

mtd: nand: spi: enable using BBT in flash

Change-Id: I4f793a10ae3f329c6be412785a01d0f117cd9b0b
Signed-off-by: Jon Lin <jon.lin@rock-chips.com>

301f8dd103-Feb-2020 Simon Glass <sjg@chromium.org>

UPSTREAM: mtd: Rename free() to rfree()

This function name conflicts with our desire to #define free() to
something else on sandbox. Since it deals with resources, rename it to
rfree().

Change-Id:

UPSTREAM: mtd: Rename free() to rfree()

This function name conflicts with our desire to #define free() to
something else on sandbox. Since it deals with resources, rename it to
rfree().

Change-Id: I2718843dd4646b7450c36e84cc16e6440c718959
Signed-off-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Jon Lin <jon.lin@rock-chips.com>
(cherry picked from commit 8d38a8459b0de45f5ff41f3e11c278a5cf395fd0)

show more ...

b16d7c2204-Sep-2019 William Zhang <william.zhang@broadcom.com>

UPSTREAM: drivers: nand: brcmnand: fix nand_chip ecc layout structure

The current brcmnand driver is based on 4.18 linux kernel which uses
mtd_set_ooblayout to set ecc layout. But nand base code in

UPSTREAM: drivers: nand: brcmnand: fix nand_chip ecc layout structure

The current brcmnand driver is based on 4.18 linux kernel which uses
mtd_set_ooblayout to set ecc layout. But nand base code in u-boot is from
old kernel which does not use this new API and expect nand_chip.ecc.layout
structure to be set. This cause nand_scan_tail function running into a bug
check if the device has a different oob size than the default ones.

This patch ports the brcmstb_choose_ecc_layout function from kernel 4.6.7
that supports the ecc layout struture and replaces the mtd_set_ooblayout
method

Change-Id: I31aec45275decfb03af2829c744c3dda0e261d12
Signed-off-by: William Zhang <william.zhang@broadcom.com>
Reviewed-by: Philippe Reynes <philippe.reynes@softathome.com>
Signed-off-by: Jon Lin <jon.lin@rock-chips.com>
(cherry picked from commit e365de90517ba4686d7a88417b1a729f5891d376)

show more ...

bfb4edbc02-Jun-2020 Jon Lin <jon.lin@rock-chips.com>

mtd: spinand: Propagate ECC information to the MTD structure

This is done by default in the raw NAND core (nand_base.c) but was
missing in the SPI-NAND core. Without these two lines the ecc_strength

mtd: spinand: Propagate ECC information to the MTD structure

This is done by default in the raw NAND core (nand_base.c) but was
missing in the SPI-NAND core. Without these two lines the ecc_strength
and ecc_step_size values are not exported to the user through sysfs.

Fixes: 7529df465248 ("mtd: nand: Add core infrastructure to support SPI NANDs")
Cc: stable@vger.kernel.org
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Reviewed-by: Boris Brezillon <boris.brezillon@collabora.com>
Signed-off-by: Richard Weinberger <richard@nod.at>

Change-Id: I37f29616e1522d9ce9e9d7ec18a473c73e1d1551
Signed-off-by: Jon Lin <jon.lin@rock-chips.com>

show more ...

0ebe729102-Jun-2020 Jon Lin <jon.lin@rock-chips.com>

mtd: spinand: Do not erase the block before writing a bad block marker

Currently when marking a block, we use spinand_erase_op() to erase
the block before writing the marker to the OOB area. Doing s

mtd: spinand: Do not erase the block before writing a bad block marker

Currently when marking a block, we use spinand_erase_op() to erase
the block before writing the marker to the OOB area. Doing so without
waiting for the operation to finish can lead to the marking failing
silently and no bad block marker being written to the flash.

In fact we don't need to do an erase at all before writing the BBM.
The ECC is disabled for raw accesses to the OOB data and we don't
need to work around any issues with chips reporting ECC errors as it
is known to be the case for raw NAND.

Fixes: 7529df465248 ("mtd: nand: Add core infrastructure to support SPI NANDs")
Cc: stable@vger.kernel.org
Signed-off-by: Frieder Schrempf <frieder.schrempf@kontron.de>
Reviewed-by: Boris Brezillon <boris.brezillon@collabora.com>
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Link: https://lore.kernel.org/linux-mtd/20200218100432.32433-4-frieder.schrempf@kontron.de

Change-Id: Ieaa72162810105bf5d62caf2efc16a1c2ef89d6d
Signed-off-by: Jon Lin <jon.lin@rock-chips.com>

show more ...

35a88e7702-Jun-2020 Jon Lin <jon.lin@rock-chips.com>

mtd: spinand: Explicitly use MTD_OPS_RAW to write the bad block marker to OOB

When writing the bad block marker to the OOB area the access mode
should be set to MTD_OPS_RAW as it is done for reading

mtd: spinand: Explicitly use MTD_OPS_RAW to write the bad block marker to OOB

When writing the bad block marker to the OOB area the access mode
should be set to MTD_OPS_RAW as it is done for reading the marker.
Currently this only works because req.mode is initialized to
MTD_OPS_PLACE_OOB (0) and spinand_write_to_cache_op() checks for
req.mode != MTD_OPS_AUTO_OOB.

Fix this by explicitly setting req.mode to MTD_OPS_RAW.

Fixes: 7529df465248 ("mtd: nand: Add core infrastructure to support SPI NANDs")
Signed-off-by: Frieder Schrempf <frieder.schrempf@kontron.de>
Reviewed-by: Boris Brezillon <boris.brezillon@collabora.com>
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Link: https://lore.kernel.org/linux-mtd/20200218100432.32433-3-frieder.schrempf@kontron.de

Change-Id: Id415efc0cd8d61d97d98e0340729f8bc60fc28cf
Signed-off-by: Jon Lin <jon.lin@rock-chips.com>

show more ...

d537a52d02-Jun-2020 Jon Lin <jon.lin@rock-chips.com>

mtd: spinand: Stop using spinand->oobbuf for buffering bad block markers

For reading and writing the bad block markers, spinand->oobbuf is
currently used as a buffer for the marker bytes. During the

mtd: spinand: Stop using spinand->oobbuf for buffering bad block markers

For reading and writing the bad block markers, spinand->oobbuf is
currently used as a buffer for the marker bytes. During the
underlying read and write operations to actually get/set the content
of the OOB area, the content of spinand->oobbuf is reused and changed
by accessing it through spinand->oobbuf and/or spinand->databuf.

This is a flaw in the original design of the SPI NAND core and at the
latest from 13c15e07eedf ("mtd: spinand: Handle the case where
PROGRAM LOAD does not reset the cache") on, it results in not having
the bad block marker written at all, as the spinand->oobbuf is
cleared to 0xff after setting the marker bytes to zero.

To fix it, we now just store the two bytes for the marker on the
stack and let the read/write operations copy it from/to the page
buffer later.

Fixes: 7529df465248 ("mtd: nand: Add core infrastructure to support SPI NANDs")
Cc: stable@vger.kernel.org
Signed-off-by: Frieder Schrempf <frieder.schrempf@kontron.de>
Reviewed-by: Boris Brezillon <boris.brezillon@collabora.com>
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Link: https://lore.kernel.org/linux-mtd/20200218100432.32433-2-frieder.schrempf@kontron.de

Change-Id: I5a47981f004c60d753da382ef6d683a7da1e436b
Signed-off-by: Jon Lin <jon.lin@rock-chips.com>

show more ...

e0242caf03-Mar-2020 Robert Marko <robert.marko@sartura.hr>

UPSTREAM: mtd: spi-nand: Import Toshiba SPI-NAND support

Linux has good support for Toshiba SPI-NAND, so lets import it.

Signed-off-by: Robert Marko <robert.marko@sartura.hr>
Tested-by: Luka Kovaci

UPSTREAM: mtd: spi-nand: Import Toshiba SPI-NAND support

Linux has good support for Toshiba SPI-NAND, so lets import it.

Signed-off-by: Robert Marko <robert.marko@sartura.hr>
Tested-by: Luka Kovacic <luka.kovacic@sartura.hr>
Cc: Luka Perkov <luka.perkov@sartura.hr>
Reviewed-by: Jagan Teki <jagan@amarulasolutions.com>
Signed-off-by: Jon Lin <jon.lin@rock-chips.com>
Change-Id: I70a328bf28c7e8740d818958faf749016dd9ca77
(cherry picked from commit 89127104848cea38bac5d40e3d6973fc203e2df6)

show more ...


/rk3399_rockchip-uboot/Kconfig
/rk3399_rockchip-uboot/Makefile
/rk3399_rockchip-uboot/arch/arm/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/u-boot.lds
/rk3399_rockchip-uboot/arch/arm/dts/rockchip-pinconf.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rv1109-evb.dts
/rk3399_rockchip-uboot/arch/arm/dts/rv1126-dram-default-timing.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rv1126-evb.dts
/rk3399_rockchip-uboot/arch/arm/dts/rv1126-pinctrl.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rv1126-u-boot.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rv1126.dtsi
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/chip_info.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/cru_rk3036.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/cru_rk3308.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/cru_rv1126.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/fit.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/gpio.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/grf_rv1126.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/rk_atags.h
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/board.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/boot_rkimg.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/chip_info.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/fit.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/kernel_arm.its
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/param.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/resource_img.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk_atags.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rv1126/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rv1126/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rv1126/clk_rv1126.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rv1126/rv1126.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rv1126/rv1126_make_fit.sh
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rv1126/syscon_rv1126.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/spl.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/usbplug.c
/rk3399_rockchip-uboot/arch/sandbox/include/asm/clk.h
/rk3399_rockchip-uboot/board/rockchip/evb_rv1126/Kconfig
/rk3399_rockchip-uboot/board/rockchip/evb_rv1126/Makefile
/rk3399_rockchip-uboot/board/rockchip/evb_rv1126/evb_rv1126.c
/rk3399_rockchip-uboot/board/st/stm32mp1/stm32mp1.c
/rk3399_rockchip-uboot/cmd/Kconfig
/rk3399_rockchip-uboot/cmd/bootfit.c
/rk3399_rockchip-uboot/cmd/mdio.c
/rk3399_rockchip-uboot/cmd/rockusb.c
/rk3399_rockchip-uboot/cmd/source.c
/rk3399_rockchip-uboot/common/Kconfig
/rk3399_rockchip-uboot/common/Makefile
/rk3399_rockchip-uboot/common/android_bootloader.c
/rk3399_rockchip-uboot/common/board_f.c
/rk3399_rockchip-uboot/common/board_r.c
/rk3399_rockchip-uboot/common/cli.c
/rk3399_rockchip-uboot/common/command.c
/rk3399_rockchip-uboot/common/fdt_support.c
/rk3399_rockchip-uboot/common/image-android.c
/rk3399_rockchip-uboot/common/image-fit.c
/rk3399_rockchip-uboot/common/spl/Kconfig
/rk3399_rockchip-uboot/common/spl/spl.c
/rk3399_rockchip-uboot/common/spl/spl_ab.c
/rk3399_rockchip-uboot/common/spl/spl_mmc.c
/rk3399_rockchip-uboot/common/spl/spl_mtd_blk.c
/rk3399_rockchip-uboot/common/spl/spl_rkfw.c
/rk3399_rockchip-uboot/common/usbplug/Kconfig
/rk3399_rockchip-uboot/common/usbplug/Makefile
/rk3399_rockchip-uboot/common/usbplug/usbplug.c
/rk3399_rockchip-uboot/configs/rk3036_defconfig
/rk3399_rockchip-uboot/configs/rv1109_defconfig
/rk3399_rockchip-uboot/configs/rv1126-emmc-tb_defconfig
/rk3399_rockchip-uboot/configs/rv1126-usbplug_defconfig
/rk3399_rockchip-uboot/configs/rv1126_defconfig
/rk3399_rockchip-uboot/configs/rv1126_spi_nor_defconfig
/rk3399_rockchip-uboot/disk/part.c
/rk3399_rockchip-uboot/drivers/clk/clk_sandbox_test.c
/rk3399_rockchip-uboot/drivers/clk/rockchip/Makefile
/rk3399_rockchip-uboot/drivers/clk/rockchip/clk_rk3036.c
/rk3399_rockchip-uboot/drivers/clk/rockchip/clk_rk3308.c
/rk3399_rockchip-uboot/drivers/clk/rockchip/clk_rv1126.c
/rk3399_rockchip-uboot/drivers/core/dump.c
/rk3399_rockchip-uboot/drivers/crypto/rockchip/crypto_v2.c
/rk3399_rockchip-uboot/drivers/gpio/Kconfig
/rk3399_rockchip-uboot/drivers/gpio/rk_gpio.c
/rk3399_rockchip-uboot/drivers/input/rk8xx_pwrkey.c
/rk3399_rockchip-uboot/drivers/irq/Kconfig
/rk3399_rockchip-uboot/drivers/irq/Makefile
/rk3399_rockchip-uboot/drivers/irq/irq-gic.c
/rk3399_rockchip-uboot/drivers/irq/irq-gpio-v2.c
/rk3399_rockchip-uboot/drivers/mmc/dw_mmc.c
/rk3399_rockchip-uboot/drivers/mmc/mmc.c
/rk3399_rockchip-uboot/drivers/mtd/mtd_blk.c
spi/Makefile
spi/core.c
spi/toshiba.c
/rk3399_rockchip-uboot/drivers/net/Kconfig
/rk3399_rockchip-uboot/drivers/net/Makefile
/rk3399_rockchip-uboot/drivers/net/dwc_eth_qos.c
/rk3399_rockchip-uboot/drivers/net/dwc_eth_qos.h
/rk3399_rockchip-uboot/drivers/net/eth-phy-uclass.c
/rk3399_rockchip-uboot/drivers/net/fec_mxc.c
/rk3399_rockchip-uboot/drivers/net/gmac_rockchip.c
/rk3399_rockchip-uboot/drivers/net/phy/phy.c
/rk3399_rockchip-uboot/drivers/phy/Kconfig
/rk3399_rockchip-uboot/drivers/phy/Makefile
/rk3399_rockchip-uboot/drivers/phy/phy-rockchip-naneng-usb2.c
/rk3399_rockchip-uboot/drivers/pinctrl/pinctrl-rockchip.c
/rk3399_rockchip-uboot/drivers/pinctrl/pinctrl-uclass.c
/rk3399_rockchip-uboot/drivers/power/charge/bq25700_charger.c
/rk3399_rockchip-uboot/drivers/power/charge_animation.c
/rk3399_rockchip-uboot/drivers/power/fuel_gauge/fg_cw201x.c
/rk3399_rockchip-uboot/drivers/power/fuel_gauge/fg_rk816.c
/rk3399_rockchip-uboot/drivers/power/fuel_gauge/fg_rk817.c
/rk3399_rockchip-uboot/drivers/power/fuel_gauge/fg_rk818.c
/rk3399_rockchip-uboot/drivers/power/io-domain/rockchip-io-domain.c
/rk3399_rockchip-uboot/drivers/power/pmic/rk8xx.c
/rk3399_rockchip-uboot/drivers/power/regulator/pwm_regulator.c
/rk3399_rockchip-uboot/drivers/serial/serial-uclass.c
/rk3399_rockchip-uboot/drivers/spi/rockchip_sfc.c
/rk3399_rockchip-uboot/drivers/spi/spi-mem.c
/rk3399_rockchip-uboot/drivers/usb/gadget/f_rockusb.c
/rk3399_rockchip-uboot/drivers/video/drm/dw_hdmi.c
/rk3399_rockchip-uboot/drivers/video/drm/rockchip_crtc.h
/rk3399_rockchip-uboot/drivers/video/drm/rockchip_display.c
/rk3399_rockchip-uboot/drivers/video/drm/rockchip_display.h
/rk3399_rockchip-uboot/drivers/video/drm/rockchip_vop.c
/rk3399_rockchip-uboot/drivers/video/drm/rockchip_vop.h
/rk3399_rockchip-uboot/drivers/video/drm/rockchip_vop_reg.c
/rk3399_rockchip-uboot/dts/Kconfig
/rk3399_rockchip-uboot/dts/Makefile
/rk3399_rockchip-uboot/include/bidram.h
/rk3399_rockchip-uboot/include/boot_rkimg.h
/rk3399_rockchip-uboot/include/clk.h
/rk3399_rockchip-uboot/include/command.h
/rk3399_rockchip-uboot/include/configs/evb_rv1126.h
/rk3399_rockchip-uboot/include/configs/rv1126_common.h
/rk3399_rockchip-uboot/include/dm/pinctrl.h
/rk3399_rockchip-uboot/include/dm/uclass-id.h
/rk3399_rockchip-uboot/include/dt-bindings/clock/rockchip-ddr.h
/rk3399_rockchip-uboot/include/dt-bindings/clock/rv1126-cru.h
/rk3399_rockchip-uboot/include/dt-bindings/memory/rv1126-dram.h
/rk3399_rockchip-uboot/include/dt-bindings/power/rv1126-power.h
/rk3399_rockchip-uboot/include/dt-bindings/soc/rockchip-system-status.h
/rk3399_rockchip-uboot/include/dt-bindings/suspend/rockchip-rv1126.h
/rk3399_rockchip-uboot/include/dwmmc.h
/rk3399_rockchip-uboot/include/eth_phy.h
/rk3399_rockchip-uboot/include/exports.h
/rk3399_rockchip-uboot/include/image.h
/rk3399_rockchip-uboot/include/irq-platform.h
/rk3399_rockchip-uboot/include/linux/mii.h
/rk3399_rockchip-uboot/include/linux/mtd/spinand.h
/rk3399_rockchip-uboot/include/linux/usb/phy-rockchip-usb2.h
/rk3399_rockchip-uboot/include/miiphy.h
/rk3399_rockchip-uboot/include/mtd_blk.h
/rk3399_rockchip-uboot/include/netdev.h
/rk3399_rockchip-uboot/include/phy.h
/rk3399_rockchip-uboot/include/phy_interface.h
/rk3399_rockchip-uboot/include/power/rk8xx_pmic.h
/rk3399_rockchip-uboot/include/rk_timer_irq.h
/rk3399_rockchip-uboot/include/spl_ab.h
/rk3399_rockchip-uboot/include/sysmem.h
/rk3399_rockchip-uboot/lib/optee_clientApi/OpteeClientRkFs.c
/rk3399_rockchip-uboot/lib/optee_clientApi/OpteeClientSMC.c
/rk3399_rockchip-uboot/make.sh
/rk3399_rockchip-uboot/net/Makefile
/rk3399_rockchip-uboot/net/eth-uclass.c
/rk3399_rockchip-uboot/net/mdio-uclass.c
/rk3399_rockchip-uboot/scripts/fit-mkimg.sh
/rk3399_rockchip-uboot/scripts/fit-resign.sh
/rk3399_rockchip-uboot/scripts/fit-unpack.sh
/rk3399_rockchip-uboot/test/dm/clk.c
/rk3399_rockchip-uboot/tools/fit_image.c
/rk3399_rockchip-uboot/tools/rockchip/loaderimage.c
bdf7b34b27-Apr-2020 Jon Lin <jon.lin@rock-chips.com>

mtd: nand: Fix memory allocation in nanddev_bbt_init()

Fix the size of the buffer allocated to store the in-memory BBT.
This bug was previously hidden by a different bug, that was fixed in
commit e4

mtd: nand: Fix memory allocation in nanddev_bbt_init()

Fix the size of the buffer allocated to store the in-memory BBT.
This bug was previously hidden by a different bug, that was fixed in
commit e4fd10db8b8 ("mtd: nand: Fix nanddev_neraseblocks()").

Fixes: ed99f7731 ("mtd: nand: Add core infrastructure to deal with NAND devices")
Change-Id: I365fdfe053ef352661a832b33a232cbb18e81be6
Signed-off-by: Jon Lin <jon.lin@rock-chips.com>

show more ...


/rk3399_rockchip-uboot/arch/arm/dts/rk3399pro-npu-evb.dts
/rk3399_rockchip-uboot/arch/arm/lib/cache-cp15.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/spl-boot-order.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/spl.c
/rk3399_rockchip-uboot/common/spl/spl_rkfw.c
/rk3399_rockchip-uboot/drivers/input/rc-uclass.c
/rk3399_rockchip-uboot/drivers/input/rockchip_ir.c
/rk3399_rockchip-uboot/drivers/misc/Makefile
/rk3399_rockchip-uboot/drivers/misc/misc-uclass.c
/rk3399_rockchip-uboot/drivers/misc/misc_decompress.c
/rk3399_rockchip-uboot/drivers/misc/misc_otp.c
/rk3399_rockchip-uboot/drivers/misc/rockchip-efuse.c
/rk3399_rockchip-uboot/drivers/misc/rockchip-secure-otp-v2.S
/rk3399_rockchip-uboot/drivers/misc/rockchip_decompress.c
/rk3399_rockchip-uboot/drivers/mtd/mtd_blk.c
bbt.c
/rk3399_rockchip-uboot/drivers/ram/Kconfig
/rk3399_rockchip-uboot/drivers/ram/Makefile
/rk3399_rockchip-uboot/drivers/ram/ramdisk_ro.c
/rk3399_rockchip-uboot/drivers/rkflash/flash_com.h
/rk3399_rockchip-uboot/drivers/rkflash/rkflash_api.c
/rk3399_rockchip-uboot/drivers/rkflash/sfc.h
/rk3399_rockchip-uboot/drivers/rkflash/sfc_nor.c
/rk3399_rockchip-uboot/drivers/rkflash/sfc_nor.h
/rk3399_rockchip-uboot/include/configs/rk1808_common.h
/rk3399_rockchip-uboot/include/configs/rockchip-common.h
/rk3399_rockchip-uboot/include/linux/input.h
/rk3399_rockchip-uboot/include/linux/mtd/nand.h
/rk3399_rockchip-uboot/include/misc.h
/rk3399_rockchip-uboot/scripts/fit-unpack.sh
/rk3399_rockchip-uboot/scripts/uimage-pack.sh
/rk3399_rockchip-uboot/tools/rockchip/trust_merger.c
/rk3399_rockchip-uboot/tools/rockchip/trust_merger.h
e65bf00a21-Apr-2020 Yifeng Zhao <yifeng.zhao@rock-chips.com>

spl: drivers: mtd: nand: raw: switch to the device model

Switch to the device model and support mtd.

Signed-off-by: Yifeng Zhao <yifeng.zhao@rock-chips.com>
Change-Id: Idfb60cec7a375254a423677b1c3f

spl: drivers: mtd: nand: raw: switch to the device model

Switch to the device model and support mtd.

Signed-off-by: Yifeng Zhao <yifeng.zhao@rock-chips.com>
Change-Id: Idfb60cec7a375254a423677b1c3f1da4be954eb5

show more ...


/rk3399_rockchip-uboot/.gitignore
/rk3399_rockchip-uboot/Kconfig
/rk3399_rockchip-uboot/arch/Kconfig
/rk3399_rockchip-uboot/arch/arm/dts/rk1808-evb.dts
/rk3399_rockchip-uboot/arch/arm/dts/rk3328-evb-u-boot.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3328-evb.dts
/rk3399_rockchip-uboot/arch/arm/dts/rk3328-u-boot.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3328.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3399-evb.dts
/rk3399_rockchip-uboot/arch/arm/dts/rk3399-puma.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3399-u-boot.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3399.dtsi
/rk3399_rockchip-uboot/arch/arm/include/asm/u-boot-arm.h
/rk3399_rockchip-uboot/arch/arm/lib/bootm.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/board.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/fit.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/kernel_arm.its
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/kernel_arm64.its
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/make_fit_atf.py
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/make_fit_optee.sh
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/spl.c
/rk3399_rockchip-uboot/board/rockchip/evb_rk3328/evb-rk3328.c
/rk3399_rockchip-uboot/cmd/bdinfo.c
/rk3399_rockchip-uboot/cmd/bootfit.c
/rk3399_rockchip-uboot/cmd/bootuimage.c
/rk3399_rockchip-uboot/cmd/charge.c
/rk3399_rockchip-uboot/common/Kconfig
/rk3399_rockchip-uboot/common/board_f.c
/rk3399_rockchip-uboot/common/board_r.c
/rk3399_rockchip-uboot/common/bootm.c
/rk3399_rockchip-uboot/common/image-fit.c
/rk3399_rockchip-uboot/common/image-sig.c
/rk3399_rockchip-uboot/common/image.c
/rk3399_rockchip-uboot/common/spl/Kconfig
/rk3399_rockchip-uboot/common/spl/spl.c
/rk3399_rockchip-uboot/common/spl/spl_atf.c
/rk3399_rockchip-uboot/common/spl/spl_fat.c
/rk3399_rockchip-uboot/common/spl/spl_fit.c
/rk3399_rockchip-uboot/common/spl/spl_mmc.c
/rk3399_rockchip-uboot/common/spl/spl_mtd_blk.c
/rk3399_rockchip-uboot/common/spl/spl_nand.c
/rk3399_rockchip-uboot/common/spl/spl_net.c
/rk3399_rockchip-uboot/common/spl/spl_optee.S
/rk3399_rockchip-uboot/common/spl/spl_ram.c
/rk3399_rockchip-uboot/common/spl/spl_rkfw.c
/rk3399_rockchip-uboot/common/spl/spl_spi.c
/rk3399_rockchip-uboot/configs/rk1808_defconfig
/rk3399_rockchip-uboot/configs/rk3328_defconfig
/rk3399_rockchip-uboot/configs/rk3399_defconfig
/rk3399_rockchip-uboot/drivers/Makefile
/rk3399_rockchip-uboot/drivers/adc/Kconfig
/rk3399_rockchip-uboot/drivers/adc/adc-uclass.c
/rk3399_rockchip-uboot/drivers/clk/rockchip/clk_rk1808.c
/rk3399_rockchip-uboot/drivers/clk/rockchip/clk_rk3399.c
/rk3399_rockchip-uboot/drivers/crypto/crypto-uclass.c
/rk3399_rockchip-uboot/drivers/crypto/rockchip/crypto_v2.c
/rk3399_rockchip-uboot/drivers/crypto/rockchip/crypto_v2_pka.c
/rk3399_rockchip-uboot/drivers/input/Kconfig
/rk3399_rockchip-uboot/drivers/input/Makefile
/rk3399_rockchip-uboot/drivers/input/spl_adc_key.c
/rk3399_rockchip-uboot/drivers/misc/Kconfig
/rk3399_rockchip-uboot/drivers/misc/Makefile
/rk3399_rockchip-uboot/drivers/misc/misc_decompress.c
/rk3399_rockchip-uboot/drivers/misc/misc_otp.c
/rk3399_rockchip-uboot/drivers/misc/rockchip-secure-otp-v2.S
/rk3399_rockchip-uboot/drivers/misc/rockchip_decompress.c
/rk3399_rockchip-uboot/drivers/mmc/Kconfig
/rk3399_rockchip-uboot/drivers/mmc/mmc.c
raw/rockchip_nand_spl.c
/rk3399_rockchip-uboot/drivers/phy/Kconfig
/rk3399_rockchip-uboot/drivers/phy/Makefile
/rk3399_rockchip-uboot/drivers/phy/phy-rockchip-inno-usb2.c
/rk3399_rockchip-uboot/drivers/phy/phy-rockchip-inno-usb3.c
/rk3399_rockchip-uboot/drivers/phy/phy-rockchip-typec.c
/rk3399_rockchip-uboot/drivers/pinctrl/pinctrl-rockchip.c
/rk3399_rockchip-uboot/drivers/power/io-domain/io-domain-uclass.c
/rk3399_rockchip-uboot/drivers/power/regulator/rk8xx.c
/rk3399_rockchip-uboot/drivers/rkflash/sfc.c
/rk3399_rockchip-uboot/drivers/rkflash/sfc.h
/rk3399_rockchip-uboot/drivers/rkflash/sfc_nand.c
/rk3399_rockchip-uboot/drivers/rkflash/sfc_nand.h
/rk3399_rockchip-uboot/drivers/rkflash/sfc_nor.c
/rk3399_rockchip-uboot/drivers/rkflash/sfc_nor.h
/rk3399_rockchip-uboot/drivers/rknand/rk_zftl_arm_v8.S
/rk3399_rockchip-uboot/drivers/spi/rockchip_sfc.c
/rk3399_rockchip-uboot/drivers/sysreset/Makefile
/rk3399_rockchip-uboot/drivers/sysreset/sysreset-uclass.c
/rk3399_rockchip-uboot/drivers/usb/cdns3/core.c
/rk3399_rockchip-uboot/drivers/usb/cdns3/gadget.c
/rk3399_rockchip-uboot/drivers/usb/common/common.c
/rk3399_rockchip-uboot/drivers/usb/dwc3/dwc3-generic.c
/rk3399_rockchip-uboot/drivers/usb/dwc3/dwc3-meson-g12a.c
/rk3399_rockchip-uboot/drivers/usb/gadget/dwc2_udc_otg.c
/rk3399_rockchip-uboot/drivers/usb/gadget/storage_common.c
/rk3399_rockchip-uboot/drivers/usb/host/Kconfig
/rk3399_rockchip-uboot/drivers/usb/host/Makefile
/rk3399_rockchip-uboot/drivers/usb/host/dwc3-of-simple.c
/rk3399_rockchip-uboot/drivers/usb/host/dwc3-sti-glue.c
/rk3399_rockchip-uboot/drivers/usb/host/ehci-msm.c
/rk3399_rockchip-uboot/drivers/usb/host/ehci-mx6.c
/rk3399_rockchip-uboot/drivers/usb/host/xhci-dwc3.c
/rk3399_rockchip-uboot/drivers/usb/musb-new/ti-musb.c
/rk3399_rockchip-uboot/include/elf.h
/rk3399_rockchip-uboot/include/image.h
/rk3399_rockchip-uboot/include/linux/usb/otg.h
/rk3399_rockchip-uboot/include/linux/usb/phy-rockchip-inno-usb3.h
/rk3399_rockchip-uboot/include/linux/usb/rockchip_phy_typec.h
/rk3399_rockchip-uboot/include/misc.h
/rk3399_rockchip-uboot/include/misc_decompress.h
/rk3399_rockchip-uboot/include/misc_otp.h
/rk3399_rockchip-uboot/include/rockchip-otp-v2.h
/rk3399_rockchip-uboot/include/rockchip/crypto_v2.h
/rk3399_rockchip-uboot/include/spl.h
/rk3399_rockchip-uboot/include/spl_rkfw.h
/rk3399_rockchip-uboot/lib/avb/libavb_user/Kconfig
/rk3399_rockchip-uboot/lib/efi_loader/efi_boottime.c
/rk3399_rockchip-uboot/lib/hang.c
/rk3399_rockchip-uboot/lib/rsa/rsa-sign.c
/rk3399_rockchip-uboot/make.sh
/rk3399_rockchip-uboot/scripts/fit-base.sh
/rk3399_rockchip-uboot/scripts/fit-resign.sh
/rk3399_rockchip-uboot/scripts/fit-unpack.sh
/rk3399_rockchip-uboot/scripts/fit-vboot-boot.sh
/rk3399_rockchip-uboot/scripts/fit-vboot-kernel.sh
/rk3399_rockchip-uboot/scripts/fit-vboot-uboot.sh
/rk3399_rockchip-uboot/scripts/fit-vboot.sh
/rk3399_rockchip-uboot/tools/fit_image.c
/rk3399_rockchip-uboot/tools/fit_info.c
3a69273728-Mar-2020 Jason Zhu <jason.zhu@rock-chips.com>

mtd: nand: rockchip: fix compile error

error: implicit declaration of function ‘fdt_get_base_address’
[-Werror=implicit-function-declaration]

Signed-off-by: Jason Zhu <jason.zhu@rock-chips.com>
Cha

mtd: nand: rockchip: fix compile error

error: implicit declaration of function ‘fdt_get_base_address’
[-Werror=implicit-function-declaration]

Signed-off-by: Jason Zhu <jason.zhu@rock-chips.com>
Change-Id: Ic950b9382bd200d854028773b7a4c63b4bed5c16

show more ...


/rk3399_rockchip-uboot/Kconfig
/rk3399_rockchip-uboot/Licenses/r8a779x_usb3.txt
/rk3399_rockchip-uboot/MAINTAINERS
/rk3399_rockchip-uboot/Makefile
/rk3399_rockchip-uboot/arch/arm/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/cpu.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/fdt.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/lowlevel.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/zynqmp/spl.c
/rk3399_rockchip-uboot/arch/arm/dts/px30-evb.dts
/rk3399_rockchip-uboot/arch/arm/dts/px30-u-boot.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk1806-evb.dts
/rk3399_rockchip-uboot/arch/arm/dts/rk1808-evb.dts
/rk3399_rockchip-uboot/arch/arm/dts/rk1808-u-boot.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3036-sdk-u-boot.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3036.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3229-evb.dts
/rk3399_rockchip-uboot/arch/arm/dts/rk322x-u-boot.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk322x.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3308-evb.dts
/rk3399_rockchip-uboot/arch/arm/dts/rk3308-u-boot.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3326-evb.dts
/rk3399_rockchip-uboot/arch/arm/dts/rk3328-evb.dts
/rk3399_rockchip-uboot/arch/arm/dts/rk3328-u-boot.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3328.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3368-evb.dts
/rk3399_rockchip-uboot/arch/arm/dts/rk3368-u-boot.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3368.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/stm32mp157-pinctrl.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/stm32mp157a-dk1-u-boot.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/stm32mp157a-dk1.dts
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-layerscape/soc.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/boot_mode.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/cru_px30.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/cru_rk1808.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/cru_rk3036.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/cru_rk3308.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/fit.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/grf_px30.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/hotkey.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/resource_img.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/rk_atags.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/rockchip_smccc.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/spl_resource_img.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/uimage.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-sunxi/usb_phy.h
/rk3399_rockchip-uboot/arch/arm/lib/bootm-fdt.c
/rk3399_rockchip-uboot/arch/arm/lib/interrupts_64.c
/rk3399_rockchip-uboot/arch/arm/mach-imx/spl.c
/rk3399_rockchip-uboot/arch/arm/mach-omap2/boot-common.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/board.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/boot_mode.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/boot_rkimg.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/fit.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/hotkey.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/kernel_arm.its
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/kernel_arm64.its
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/kernel_dtb.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/make_fit_atf.py
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/make_fit_optee.sh
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/memblk.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/param.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/px30/px30.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/resource_img.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk1808/rk1808.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk_atags.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rockchip_smccc.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/spl-boot-order.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/spl_resource_img.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/uimage.c
/rk3399_rockchip-uboot/arch/arm/mach-zynqmp/spl.c
/rk3399_rockchip-uboot/arch/sandbox/dts/test.dts
/rk3399_rockchip-uboot/arch/sandbox/include/asm/clk.h
/rk3399_rockchip-uboot/arch/sandbox/include/asm/reset.h
/rk3399_rockchip-uboot/board/Marvell/mvebu_armada-37xx/board.c
/rk3399_rockchip-uboot/board/Marvell/mvebu_armada-8k/board.c
/rk3399_rockchip-uboot/board/compulab/cl-som-am57x/cl-som-am57x.c
/rk3399_rockchip-uboot/board/compulab/cm_t43/cm_t43.c
/rk3399_rockchip-uboot/board/samsung/common/gadget.c
/rk3399_rockchip-uboot/board/siemens/common/factoryset.c
/rk3399_rockchip-uboot/board/st/stm32mp1/stm32mp1.c
/rk3399_rockchip-uboot/board/sunxi/board.c
/rk3399_rockchip-uboot/board/ti/am43xx/board.c
/rk3399_rockchip-uboot/board/ti/am57xx/board.c
/rk3399_rockchip-uboot/board/ti/dra7xx/evm.c
/rk3399_rockchip-uboot/board/toradex/apalis_imx6/apalis_imx6.c
/rk3399_rockchip-uboot/board/toradex/colibri_imx6/colibri_imx6.c
/rk3399_rockchip-uboot/cmd/Kconfig
/rk3399_rockchip-uboot/cmd/Makefile
/rk3399_rockchip-uboot/cmd/bootefi.c
/rk3399_rockchip-uboot/cmd/bootfit.c
/rk3399_rockchip-uboot/cmd/bootm.c
/rk3399_rockchip-uboot/cmd/bootrkp.c
/rk3399_rockchip-uboot/cmd/bootuimage.c
/rk3399_rockchip-uboot/cmd/crypto.c
/rk3399_rockchip-uboot/cmd/fastboot.c
/rk3399_rockchip-uboot/cmd/fdt.c
/rk3399_rockchip-uboot/cmd/net.c
/rk3399_rockchip-uboot/cmd/rkimgtest.c
/rk3399_rockchip-uboot/cmd/rockusb.c
/rk3399_rockchip-uboot/cmd/source.c
/rk3399_rockchip-uboot/cmd/thordown.c
/rk3399_rockchip-uboot/cmd/usb_gadget_sdp.c
/rk3399_rockchip-uboot/cmd/usb_mass_storage.c
/rk3399_rockchip-uboot/common/Kconfig
/rk3399_rockchip-uboot/common/Makefile
/rk3399_rockchip-uboot/common/android_bootloader.c
/rk3399_rockchip-uboot/common/autoboot.c
/rk3399_rockchip-uboot/common/board_f.c
/rk3399_rockchip-uboot/common/board_r.c
/rk3399_rockchip-uboot/common/boot_fit.c
/rk3399_rockchip-uboot/common/bootm.c
/rk3399_rockchip-uboot/common/cli.c
/rk3399_rockchip-uboot/common/console.c
/rk3399_rockchip-uboot/common/dfu.c
/rk3399_rockchip-uboot/common/image-android.c
/rk3399_rockchip-uboot/common/image-fdt.c
/rk3399_rockchip-uboot/common/image-fit.c
/rk3399_rockchip-uboot/common/image.c
/rk3399_rockchip-uboot/common/main.c
/rk3399_rockchip-uboot/common/spl/Kconfig
/rk3399_rockchip-uboot/common/spl/Makefile
/rk3399_rockchip-uboot/common/spl/spl.c
/rk3399_rockchip-uboot/common/spl/spl_atf.c
/rk3399_rockchip-uboot/common/spl/spl_fit.c
/rk3399_rockchip-uboot/common/spl/spl_ram.c
/rk3399_rockchip-uboot/common/spl/spl_rkfw.c
/rk3399_rockchip-uboot/common/spl/spl_sdp.c
/rk3399_rockchip-uboot/common/splash_source.c
/rk3399_rockchip-uboot/common/usb.c
/rk3399_rockchip-uboot/common/usb_hub.c
/rk3399_rockchip-uboot/common/usb_kbd.c
/rk3399_rockchip-uboot/common/usb_storage.c
/rk3399_rockchip-uboot/common/write_keybox.c
/rk3399_rockchip-uboot/configs/A13-OLinuXino_defconfig
/rk3399_rockchip-uboot/configs/A20-OLinuXino-Lime2-eMMC_defconfig
/rk3399_rockchip-uboot/configs/A20-OLinuXino-Lime2_defconfig
/rk3399_rockchip-uboot/configs/CHIP_defconfig
/rk3399_rockchip-uboot/configs/CHIP_pro_defconfig
/rk3399_rockchip-uboot/configs/Cubietruck_defconfig
/rk3399_rockchip-uboot/configs/Nintendo_NES_Classic_Edition_defconfig
/rk3399_rockchip-uboot/configs/Sinlinx_SinA33_defconfig
/rk3399_rockchip-uboot/configs/am335x_baltos_defconfig
/rk3399_rockchip-uboot/configs/am335x_boneblack_defconfig
/rk3399_rockchip-uboot/configs/am335x_boneblack_vboot_defconfig
/rk3399_rockchip-uboot/configs/am335x_evm_defconfig
/rk3399_rockchip-uboot/configs/am335x_evm_nor_defconfig
/rk3399_rockchip-uboot/configs/am335x_evm_norboot_defconfig
/rk3399_rockchip-uboot/configs/am335x_evm_spiboot_defconfig
/rk3399_rockchip-uboot/configs/am335x_evm_usbspl_defconfig
/rk3399_rockchip-uboot/configs/am335x_hs_evm_defconfig
/rk3399_rockchip-uboot/configs/am43xx_evm_defconfig
/rk3399_rockchip-uboot/configs/am43xx_evm_ethboot_defconfig
/rk3399_rockchip-uboot/configs/am43xx_evm_qspiboot_defconfig
/rk3399_rockchip-uboot/configs/am43xx_evm_usbhost_boot_defconfig
/rk3399_rockchip-uboot/configs/am43xx_hs_evm_defconfig
/rk3399_rockchip-uboot/configs/am57xx_evm_defconfig
/rk3399_rockchip-uboot/configs/am57xx_evm_nodt_defconfig
/rk3399_rockchip-uboot/configs/am57xx_hs_evm_defconfig
/rk3399_rockchip-uboot/configs/android6.0-rk3399_defconfig
/rk3399_rockchip-uboot/configs/apalis-tk1_defconfig
/rk3399_rockchip-uboot/configs/apalis_imx6_defconfig
/rk3399_rockchip-uboot/configs/apalis_imx6_nospl_com_defconfig
/rk3399_rockchip-uboot/configs/apalis_imx6_nospl_it_defconfig
/rk3399_rockchip-uboot/configs/apalis_t30_defconfig
/rk3399_rockchip-uboot/configs/avnet_ultra96_rev1_defconfig
/rk3399_rockchip-uboot/configs/bcm11130_defconfig
/rk3399_rockchip-uboot/configs/bcm11130_nand_defconfig
/rk3399_rockchip-uboot/configs/bcm23550_w1d_defconfig
/rk3399_rockchip-uboot/configs/bcm28155_ap_defconfig
/rk3399_rockchip-uboot/configs/bcm28155_w1d_defconfig
/rk3399_rockchip-uboot/configs/beaver_defconfig
/rk3399_rockchip-uboot/configs/birdland_bav335a_defconfig
/rk3399_rockchip-uboot/configs/birdland_bav335b_defconfig
/rk3399_rockchip-uboot/configs/cei-tk1-som_defconfig
/rk3399_rockchip-uboot/configs/cgtqmx6eval_defconfig
/rk3399_rockchip-uboot/configs/chromebit_mickey_defconfig
/rk3399_rockchip-uboot/configs/chromebook_jerry_defconfig
/rk3399_rockchip-uboot/configs/chromebook_minnie_defconfig
/rk3399_rockchip-uboot/configs/colibri_imx6_defconfig
/rk3399_rockchip-uboot/configs/colibri_imx6_nospl_defconfig
/rk3399_rockchip-uboot/configs/colibri_imx7_defconfig
/rk3399_rockchip-uboot/configs/colibri_t20_defconfig
/rk3399_rockchip-uboot/configs/colibri_t30_defconfig
/rk3399_rockchip-uboot/configs/colibri_vf_defconfig
/rk3399_rockchip-uboot/configs/corvus_defconfig
/rk3399_rockchip-uboot/configs/dalmore_defconfig
/rk3399_rockchip-uboot/configs/display5_factory_defconfig
/rk3399_rockchip-uboot/configs/dms-ba16-1g_defconfig
/rk3399_rockchip-uboot/configs/dms-ba16_defconfig
/rk3399_rockchip-uboot/configs/dra7xx_evm_defconfig
/rk3399_rockchip-uboot/configs/dra7xx_hs_evm_defconfig
/rk3399_rockchip-uboot/configs/draco_defconfig
/rk3399_rockchip-uboot/configs/e2220-1170_defconfig
/rk3399_rockchip-uboot/configs/edison_defconfig
/rk3399_rockchip-uboot/configs/etamin_defconfig
/rk3399_rockchip-uboot/configs/evb-aarch32-rk3308_defconfig
/rk3399_rockchip-uboot/configs/evb-px30_defconfig
/rk3399_rockchip-uboot/configs/evb-px3se_defconfig
/rk3399_rockchip-uboot/configs/evb-rk3036_defconfig
/rk3399_rockchip-uboot/configs/evb-rk3066_defconfig
/rk3399_rockchip-uboot/configs/evb-rk3128_defconfig
/rk3399_rockchip-uboot/configs/evb-rk3229_defconfig
/rk3399_rockchip-uboot/configs/evb-rk3288-rk1608_defconfig
/rk3399_rockchip-uboot/configs/evb-rk3288_defconfig
/rk3399_rockchip-uboot/configs/evb-rk3308_defconfig
/rk3399_rockchip-uboot/configs/evb-rk3326_defconfig
/rk3399_rockchip-uboot/configs/evb-rk3328_defconfig
/rk3399_rockchip-uboot/configs/evb-rk3399_defconfig
/rk3399_rockchip-uboot/configs/evb-rv1108_defconfig
/rk3399_rockchip-uboot/configs/fennec-rk3288_defconfig
/rk3399_rockchip-uboot/configs/firefly-rk3288_defconfig
/rk3399_rockchip-uboot/configs/firefly-rk3399_defconfig
/rk3399_rockchip-uboot/configs/gva-rk3229_defconfig
/rk3399_rockchip-uboot/configs/gwventana_emmc_defconfig
/rk3399_rockchip-uboot/configs/gwventana_gw5904_defconfig
/rk3399_rockchip-uboot/configs/gwventana_nand_defconfig
/rk3399_rockchip-uboot/configs/h2200_defconfig
/rk3399_rockchip-uboot/configs/jetson-tk1_defconfig
/rk3399_rockchip-uboot/configs/k2e_evm_defconfig
/rk3399_rockchip-uboot/configs/k2e_hs_evm_defconfig
/rk3399_rockchip-uboot/configs/k2g_evm_defconfig
/rk3399_rockchip-uboot/configs/k2g_hs_evm_defconfig
/rk3399_rockchip-uboot/configs/k2hk_evm_defconfig
/rk3399_rockchip-uboot/configs/k2hk_hs_evm_defconfig
/rk3399_rockchip-uboot/configs/k2l_evm_defconfig
/rk3399_rockchip-uboot/configs/k2l_hs_evm_defconfig
/rk3399_rockchip-uboot/configs/kc1_defconfig
/rk3399_rockchip-uboot/configs/kylin-rk3036_defconfig
/rk3399_rockchip-uboot/configs/ma5d4evk_defconfig
/rk3399_rockchip-uboot/configs/miqi-rk3288_defconfig
/rk3399_rockchip-uboot/configs/mk808_defconfig
/rk3399_rockchip-uboot/configs/mx6memcal_defconfig
/rk3399_rockchip-uboot/configs/mx6qsabrelite_defconfig
/rk3399_rockchip-uboot/configs/mx6sabreauto_defconfig
/rk3399_rockchip-uboot/configs/mx6sabresd_defconfig
/rk3399_rockchip-uboot/configs/mx7dsabresd_defconfig
/rk3399_rockchip-uboot/configs/mx7dsabresd_secure_defconfig
/rk3399_rockchip-uboot/configs/nitrogen6dl2g_defconfig
/rk3399_rockchip-uboot/configs/nitrogen6dl_defconfig
/rk3399_rockchip-uboot/configs/nitrogen6q2g_defconfig
/rk3399_rockchip-uboot/configs/nitrogen6q_defconfig
/rk3399_rockchip-uboot/configs/nitrogen6s1g_defconfig
/rk3399_rockchip-uboot/configs/nitrogen6s_defconfig
/rk3399_rockchip-uboot/configs/novena_defconfig
/rk3399_rockchip-uboot/configs/nyan-big_defconfig
/rk3399_rockchip-uboot/configs/odroid-xu3_defconfig
/rk3399_rockchip-uboot/configs/odroid_defconfig
/rk3399_rockchip-uboot/configs/omap3_beagle_defconfig
/rk3399_rockchip-uboot/configs/omap3_evm_defconfig
/rk3399_rockchip-uboot/configs/omap3_logic_defconfig
/rk3399_rockchip-uboot/configs/omap5_uevm_defconfig
/rk3399_rockchip-uboot/configs/opos6uldev_defconfig
/rk3399_rockchip-uboot/configs/origen_defconfig
/rk3399_rockchip-uboot/configs/p2371-0000_defconfig
/rk3399_rockchip-uboot/configs/p2371-2180_defconfig
/rk3399_rockchip-uboot/configs/p2571_defconfig
/rk3399_rockchip-uboot/configs/parrot_r16_defconfig
/rk3399_rockchip-uboot/configs/pcm051_rev1_defconfig
/rk3399_rockchip-uboot/configs/pcm051_rev3_defconfig
/rk3399_rockchip-uboot/configs/phycore-rk3288_defconfig
/rk3399_rockchip-uboot/configs/pico-hobbit-imx6ul_defconfig
/rk3399_rockchip-uboot/configs/pico-hobbit-imx7d_defconfig
/rk3399_rockchip-uboot/configs/pico-imx6ul_defconfig
/rk3399_rockchip-uboot/configs/pico-imx7d_defconfig
/rk3399_rockchip-uboot/configs/pico-pi-imx6ul_defconfig
/rk3399_rockchip-uboot/configs/pico-pi-imx7d_defconfig
/rk3399_rockchip-uboot/configs/popmetal-rk3288_defconfig
/rk3399_rockchip-uboot/configs/px30_defconfig
/rk3399_rockchip-uboot/configs/pxm2_defconfig
/rk3399_rockchip-uboot/configs/rastaban_defconfig
/rk3399_rockchip-uboot/configs/rk1806_defconfig
/rk3399_rockchip-uboot/configs/rk1808_defconfig
/rk3399_rockchip-uboot/configs/rk3036_defconfig
/rk3399_rockchip-uboot/configs/rk3126_defconfig
/rk3399_rockchip-uboot/configs/rk3128_defconfig
/rk3399_rockchip-uboot/configs/rk3128x_defconfig
/rk3399_rockchip-uboot/configs/rk322x_defconfig
/rk3399_rockchip-uboot/configs/rk3288_defconfig
/rk3399_rockchip-uboot/configs/rk3308-aarch32_defconfig
/rk3399_rockchip-uboot/configs/rk3308_defconfig
/rk3399_rockchip-uboot/configs/rk3326-aarch32_defconfig
/rk3399_rockchip-uboot/configs/rk3326_defconfig
/rk3399_rockchip-uboot/configs/rk3328_defconfig
/rk3399_rockchip-uboot/configs/rk3368_defconfig
/rk3399_rockchip-uboot/configs/rk3399_defconfig
/rk3399_rockchip-uboot/configs/rk3399pro_defconfig
/rk3399_rockchip-uboot/configs/rock2_defconfig
/rk3399_rockchip-uboot/configs/rut_defconfig
/rk3399_rockchip-uboot/configs/s5p_goni_defconfig
/rk3399_rockchip-uboot/configs/s5pc210_universal_defconfig
/rk3399_rockchip-uboot/configs/sama5d2_ptc_nandflash_defconfig
/rk3399_rockchip-uboot/configs/sama5d2_ptc_spiflash_defconfig
/rk3399_rockchip-uboot/configs/sansa_fuze_plus_defconfig
/rk3399_rockchip-uboot/configs/smartweb_defconfig
/rk3399_rockchip-uboot/configs/sniper_defconfig
/rk3399_rockchip-uboot/configs/socfpga_arria5_defconfig
/rk3399_rockchip-uboot/configs/socfpga_cyclone5_defconfig
/rk3399_rockchip-uboot/configs/socfpga_de0_nano_soc_defconfig
/rk3399_rockchip-uboot/configs/socfpga_de10_nano_defconfig
/rk3399_rockchip-uboot/configs/socfpga_mcvevk_defconfig
/rk3399_rockchip-uboot/configs/socfpga_sockit_defconfig
/rk3399_rockchip-uboot/configs/socfpga_socrates_defconfig
/rk3399_rockchip-uboot/configs/socfpga_vining_fpga_defconfig
/rk3399_rockchip-uboot/configs/stih410-b2260_defconfig
/rk3399_rockchip-uboot/configs/taurus_defconfig
/rk3399_rockchip-uboot/configs/tbs2910_defconfig
/rk3399_rockchip-uboot/configs/thuban_defconfig
/rk3399_rockchip-uboot/configs/tinker-rk3288_defconfig
/rk3399_rockchip-uboot/configs/topic_miami_defconfig
/rk3399_rockchip-uboot/configs/topic_miamilite_defconfig
/rk3399_rockchip-uboot/configs/topic_miamiplus_defconfig
/rk3399_rockchip-uboot/configs/trats2_defconfig
/rk3399_rockchip-uboot/configs/trats_defconfig
/rk3399_rockchip-uboot/configs/venice2_defconfig
/rk3399_rockchip-uboot/configs/vinco_defconfig
/rk3399_rockchip-uboot/configs/warp7_defconfig
/rk3399_rockchip-uboot/configs/warp7_secure_defconfig
/rk3399_rockchip-uboot/configs/warp_defconfig
/rk3399_rockchip-uboot/configs/xfi3_defconfig
/rk3399_rockchip-uboot/configs/xilinx_zynqmp_ep_defconfig
/rk3399_rockchip-uboot/configs/xilinx_zynqmp_zc1751_xm015_dc1_defconfig
/rk3399_rockchip-uboot/configs/xilinx_zynqmp_zc1751_xm016_dc2_defconfig
/rk3399_rockchip-uboot/configs/xilinx_zynqmp_zc1751_xm017_dc3_defconfig
/rk3399_rockchip-uboot/configs/xilinx_zynqmp_zcu100_revC_defconfig
/rk3399_rockchip-uboot/configs/xilinx_zynqmp_zcu102_rev1_0_defconfig
/rk3399_rockchip-uboot/configs/xilinx_zynqmp_zcu102_revA_defconfig
/rk3399_rockchip-uboot/configs/xilinx_zynqmp_zcu102_revB_defconfig
/rk3399_rockchip-uboot/configs/xilinx_zynqmp_zcu104_revA_defconfig
/rk3399_rockchip-uboot/configs/xilinx_zynqmp_zcu104_revC_defconfig
/rk3399_rockchip-uboot/configs/xilinx_zynqmp_zcu106_revA_defconfig
/rk3399_rockchip-uboot/configs/xilinx_zynqmp_zcu111_revA_defconfig
/rk3399_rockchip-uboot/configs/zynq_microzed_defconfig
/rk3399_rockchip-uboot/configs/zynq_picozed_defconfig
/rk3399_rockchip-uboot/configs/zynq_z_turn_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc702_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc706_defconfig
/rk3399_rockchip-uboot/configs/zynq_zed_defconfig
/rk3399_rockchip-uboot/configs/zynq_zybo_defconfig
/rk3399_rockchip-uboot/disk/Kconfig
/rk3399_rockchip-uboot/doc/README.android-fastboot
/rk3399_rockchip-uboot/doc/device-tree-bindings/usb/dwc2.txt
/rk3399_rockchip-uboot/doc/uImage.FIT/source_file_format.txt
/rk3399_rockchip-uboot/drivers/Makefile
/rk3399_rockchip-uboot/drivers/clk/clk-uclass.c
/rk3399_rockchip-uboot/drivers/clk/clk_sandbox_test.c
/rk3399_rockchip-uboot/drivers/clk/rockchip/clk_px30.c
/rk3399_rockchip-uboot/drivers/clk/rockchip/clk_rk1808.c
/rk3399_rockchip-uboot/drivers/clk/rockchip/clk_rk3036.c
/rk3399_rockchip-uboot/drivers/clk/rockchip/clk_rk3288.c
/rk3399_rockchip-uboot/drivers/clk/rockchip/clk_rk3308.c
/rk3399_rockchip-uboot/drivers/clk/rockchip/clk_rk3328.c
/rk3399_rockchip-uboot/drivers/clk/rockchip/clk_rk3399.c
/rk3399_rockchip-uboot/drivers/core/device.c
/rk3399_rockchip-uboot/drivers/core/of_access.c
/rk3399_rockchip-uboot/drivers/core/ofnode.c
/rk3399_rockchip-uboot/drivers/core/read.c
/rk3399_rockchip-uboot/drivers/core/root.c
/rk3399_rockchip-uboot/drivers/core/uclass.c
/rk3399_rockchip-uboot/drivers/cpu/rockchip_amp.c
/rk3399_rockchip-uboot/drivers/crypto/crypto-uclass.c
/rk3399_rockchip-uboot/drivers/crypto/rockchip/crypto_v1.c
/rk3399_rockchip-uboot/drivers/crypto/rockchip/crypto_v2.c
/rk3399_rockchip-uboot/drivers/input/Kconfig
/rk3399_rockchip-uboot/drivers/input/Makefile
/rk3399_rockchip-uboot/drivers/input/input.c
/rk3399_rockchip-uboot/drivers/input/key-uclass.c
/rk3399_rockchip-uboot/drivers/misc/Kconfig
/rk3399_rockchip-uboot/drivers/misc/Makefile
/rk3399_rockchip-uboot/drivers/misc/rockchip-efuse.c
/rk3399_rockchip-uboot/drivers/misc/rockchip_decompress.c
/rk3399_rockchip-uboot/drivers/mmc/mmc.c
/rk3399_rockchip-uboot/drivers/mmc/rockchip_dw_mmc.c
raw/rockchip_nand_spl.c
/rk3399_rockchip-uboot/drivers/net/fsl-mc/dpio/qbman_private.h
/rk3399_rockchip-uboot/drivers/power/fuel_gauge/Kconfig
/rk3399_rockchip-uboot/drivers/power/fuel_gauge/fg_cw201x.c
/rk3399_rockchip-uboot/drivers/power/fuel_gauge/fg_rk816.c
/rk3399_rockchip-uboot/drivers/power/fuel_gauge/fg_rk818.c
/rk3399_rockchip-uboot/drivers/power/io-domain/rockchip-io-domain.c
/rk3399_rockchip-uboot/drivers/power/pmic/rk8xx.c
/rk3399_rockchip-uboot/drivers/power/regulator/pwm_regulator.c
/rk3399_rockchip-uboot/drivers/power/regulator/rk8xx.c
/rk3399_rockchip-uboot/drivers/ram/rockchip/Makefile
/rk3399_rockchip-uboot/drivers/ram/rockchip/sdram_px30.c
/rk3399_rockchip-uboot/drivers/reset/reset-uclass.c
/rk3399_rockchip-uboot/drivers/reset/sandbox-reset-test.c
/rk3399_rockchip-uboot/drivers/reset/sandbox-reset.c
/rk3399_rockchip-uboot/drivers/rkflash/rkflash_api.c
/rk3399_rockchip-uboot/drivers/rkflash/rkflash_blk.c
/rk3399_rockchip-uboot/drivers/rkflash/sfc_nor.c
/rk3399_rockchip-uboot/drivers/rkflash/sfc_nor.h
/rk3399_rockchip-uboot/drivers/serial/ns16550.c
/rk3399_rockchip-uboot/drivers/serial/serial-uclass.c
/rk3399_rockchip-uboot/drivers/spi/rk_spi.c
/rk3399_rockchip-uboot/drivers/usb/Kconfig
/rk3399_rockchip-uboot/drivers/usb/cdns3/Kconfig
/rk3399_rockchip-uboot/drivers/usb/cdns3/Makefile
/rk3399_rockchip-uboot/drivers/usb/cdns3/cdns3-ti.c
/rk3399_rockchip-uboot/drivers/usb/cdns3/core.c
/rk3399_rockchip-uboot/drivers/usb/cdns3/core.h
/rk3399_rockchip-uboot/drivers/usb/cdns3/debug.h
/rk3399_rockchip-uboot/drivers/usb/cdns3/drd.c
/rk3399_rockchip-uboot/drivers/usb/cdns3/drd.h
/rk3399_rockchip-uboot/drivers/usb/cdns3/ep0.c
/rk3399_rockchip-uboot/drivers/usb/cdns3/gadget-export.h
/rk3399_rockchip-uboot/drivers/usb/cdns3/gadget.c
/rk3399_rockchip-uboot/drivers/usb/cdns3/gadget.h
/rk3399_rockchip-uboot/drivers/usb/cdns3/host-export.h
/rk3399_rockchip-uboot/drivers/usb/cdns3/host.c
/rk3399_rockchip-uboot/drivers/usb/cdns3/trace.c
/rk3399_rockchip-uboot/drivers/usb/cdns3/trace.h
/rk3399_rockchip-uboot/drivers/usb/common/Makefile
/rk3399_rockchip-uboot/drivers/usb/common/common.c
/rk3399_rockchip-uboot/drivers/usb/common/fsl-errata.c
/rk3399_rockchip-uboot/drivers/usb/dwc3/Kconfig
/rk3399_rockchip-uboot/drivers/usb/dwc3/Makefile
/rk3399_rockchip-uboot/drivers/usb/dwc3/core.c
/rk3399_rockchip-uboot/drivers/usb/dwc3/core.h
/rk3399_rockchip-uboot/drivers/usb/dwc3/dwc3-generic.c
/rk3399_rockchip-uboot/drivers/usb/dwc3/dwc3-meson-g12a.c
/rk3399_rockchip-uboot/drivers/usb/dwc3/dwc3-omap.c
/rk3399_rockchip-uboot/drivers/usb/dwc3/dwc3-uniphier.c
/rk3399_rockchip-uboot/drivers/usb/dwc3/ep0.c
/rk3399_rockchip-uboot/drivers/usb/dwc3/gadget.c
/rk3399_rockchip-uboot/drivers/usb/dwc3/linux-compat.h
/rk3399_rockchip-uboot/drivers/usb/dwc3/ti_usb_phy.c
/rk3399_rockchip-uboot/drivers/usb/emul/sandbox_flash.c
/rk3399_rockchip-uboot/drivers/usb/emul/sandbox_hub.c
/rk3399_rockchip-uboot/drivers/usb/emul/sandbox_keyb.c
/rk3399_rockchip-uboot/drivers/usb/emul/usb-emul-uclass.c
/rk3399_rockchip-uboot/drivers/usb/eth/lan78xx.c
/rk3399_rockchip-uboot/drivers/usb/eth/r8152.c
/rk3399_rockchip-uboot/drivers/usb/eth/usb_ether.c
/rk3399_rockchip-uboot/drivers/usb/gadget/Kconfig
/rk3399_rockchip-uboot/drivers/usb/gadget/Makefile
/rk3399_rockchip-uboot/drivers/usb/gadget/at91_udc.c
/rk3399_rockchip-uboot/drivers/usb/gadget/atmel_usba_udc.c
/rk3399_rockchip-uboot/drivers/usb/gadget/ci_udc.c
/rk3399_rockchip-uboot/drivers/usb/gadget/composite.c
/rk3399_rockchip-uboot/drivers/usb/gadget/dwc2_udc_otg.c
/rk3399_rockchip-uboot/drivers/usb/gadget/dwc2_udc_otg_phy.c
/rk3399_rockchip-uboot/drivers/usb/gadget/dwc2_udc_otg_priv.h
/rk3399_rockchip-uboot/drivers/usb/gadget/dwc2_udc_otg_regs.h
/rk3399_rockchip-uboot/drivers/usb/gadget/dwc2_udc_otg_xfer_dma.c
/rk3399_rockchip-uboot/drivers/usb/gadget/epautoconf.c
/rk3399_rockchip-uboot/drivers/usb/gadget/ether.c
/rk3399_rockchip-uboot/drivers/usb/gadget/f_dfu.c
/rk3399_rockchip-uboot/drivers/usb/gadget/f_fastboot.c
/rk3399_rockchip-uboot/drivers/usb/gadget/f_mass_storage.c
/rk3399_rockchip-uboot/drivers/usb/gadget/f_sdp.c
/rk3399_rockchip-uboot/drivers/usb/gadget/f_thor.c
/rk3399_rockchip-uboot/drivers/usb/gadget/f_thor.h
/rk3399_rockchip-uboot/drivers/usb/gadget/g_dnl.c
/rk3399_rockchip-uboot/drivers/usb/gadget/gadget_chips.h
/rk3399_rockchip-uboot/drivers/usb/gadget/pxa25x_udc.c
/rk3399_rockchip-uboot/drivers/usb/gadget/storage_common.c
/rk3399_rockchip-uboot/drivers/usb/gadget/udc/Makefile
/rk3399_rockchip-uboot/drivers/usb/gadget/udc/udc-core.c
/rk3399_rockchip-uboot/drivers/usb/gadget/udc/udc-uclass.c
/rk3399_rockchip-uboot/drivers/usb/host/Kconfig
/rk3399_rockchip-uboot/drivers/usb/host/Makefile
/rk3399_rockchip-uboot/drivers/usb/host/dwc2.c
/rk3399_rockchip-uboot/drivers/usb/host/dwc2.h
/rk3399_rockchip-uboot/drivers/usb/host/dwc3-of-simple.c
/rk3399_rockchip-uboot/drivers/usb/host/ehci-atmel.c
/rk3399_rockchip-uboot/drivers/usb/host/ehci-fsl.c
/rk3399_rockchip-uboot/drivers/usb/host/ehci-generic.c
/rk3399_rockchip-uboot/drivers/usb/host/ehci-hcd.c
/rk3399_rockchip-uboot/drivers/usb/host/ehci-marvell.c
/rk3399_rockchip-uboot/drivers/usb/host/ehci-msm.c
/rk3399_rockchip-uboot/drivers/usb/host/ehci-mx5.c
/rk3399_rockchip-uboot/drivers/usb/host/ehci-mx6.c
/rk3399_rockchip-uboot/drivers/usb/host/ehci-mxs.c
/rk3399_rockchip-uboot/drivers/usb/host/ehci-pci.c
/rk3399_rockchip-uboot/drivers/usb/host/ehci-sunxi.c
/rk3399_rockchip-uboot/drivers/usb/host/ehci-vf.c
/rk3399_rockchip-uboot/drivers/usb/host/ehci.h
/rk3399_rockchip-uboot/drivers/usb/host/ohci-da8xx.c
/rk3399_rockchip-uboot/drivers/usb/host/ohci-generic.c
/rk3399_rockchip-uboot/drivers/usb/host/ohci-hcd.c
/rk3399_rockchip-uboot/drivers/usb/host/ohci-pci.c
/rk3399_rockchip-uboot/drivers/usb/host/ohci-sunxi.c
/rk3399_rockchip-uboot/drivers/usb/host/ohci.h
/rk3399_rockchip-uboot/drivers/usb/host/r8a66597-hcd.c
/rk3399_rockchip-uboot/drivers/usb/host/r8a66597.h
/rk3399_rockchip-uboot/drivers/usb/host/sl811-hcd.c
/rk3399_rockchip-uboot/drivers/usb/host/usb-sandbox.c
/rk3399_rockchip-uboot/drivers/usb/host/usb-uclass.c
/rk3399_rockchip-uboot/drivers/usb/host/xhci-dwc3.c
/rk3399_rockchip-uboot/drivers/usb/host/xhci-exynos5.c
/rk3399_rockchip-uboot/drivers/usb/host/xhci-fsl.c
/rk3399_rockchip-uboot/drivers/usb/host/xhci-mem.c
/rk3399_rockchip-uboot/drivers/usb/host/xhci-mvebu.c
/rk3399_rockchip-uboot/drivers/usb/host/xhci-omap.c
/rk3399_rockchip-uboot/drivers/usb/host/xhci-pci.c
/rk3399_rockchip-uboot/drivers/usb/host/xhci-rcar-r8a779x_usb3_v3.h
/rk3399_rockchip-uboot/drivers/usb/host/xhci-rcar.c
/rk3399_rockchip-uboot/drivers/usb/host/xhci-ring.c
/rk3399_rockchip-uboot/drivers/usb/host/xhci-rockchip.c
/rk3399_rockchip-uboot/drivers/usb/host/xhci-zynqmp.c
/rk3399_rockchip-uboot/drivers/usb/host/xhci.c
/rk3399_rockchip-uboot/drivers/usb/musb-new/Kconfig
/rk3399_rockchip-uboot/drivers/usb/musb-new/Makefile
/rk3399_rockchip-uboot/drivers/usb/musb-new/da8xx.c
/rk3399_rockchip-uboot/drivers/usb/musb-new/linux-compat.h
/rk3399_rockchip-uboot/drivers/usb/musb-new/musb_uboot.c
/rk3399_rockchip-uboot/drivers/usb/musb-new/omap2430.c
/rk3399_rockchip-uboot/drivers/usb/musb-new/sunxi.c
/rk3399_rockchip-uboot/drivers/usb/musb-new/ti-musb.c
/rk3399_rockchip-uboot/drivers/usb/musb-new/usb-compat.h
/rk3399_rockchip-uboot/drivers/usb/musb/musb_hcd.c
/rk3399_rockchip-uboot/drivers/usb/phy/omap_usb_phy.c
/rk3399_rockchip-uboot/drivers/usb/ulpi/Kconfig
/rk3399_rockchip-uboot/drivers/video/drm/analogix_dp_reg.c
/rk3399_rockchip-uboot/drivers/video/drm/rockchip_crtc.h
/rk3399_rockchip-uboot/drivers/video/drm/rockchip_display.c
/rk3399_rockchip-uboot/drivers/video/drm/rockchip_display.h
/rk3399_rockchip-uboot/drivers/video/drm/rockchip_dw_hdmi.c
/rk3399_rockchip-uboot/drivers/video/drm/rockchip_lvds.c
/rk3399_rockchip-uboot/drivers/video/drm/rockchip_rgb.c
/rk3399_rockchip-uboot/drivers/video/drm/rockchip_vop.c
/rk3399_rockchip-uboot/dts/Kconfig
/rk3399_rockchip-uboot/dts/Makefile
/rk3399_rockchip-uboot/env/common.c
/rk3399_rockchip-uboot/include/android_avb/avb_ops.h
/rk3399_rockchip-uboot/include/android_bootloader.h
/rk3399_rockchip-uboot/include/asm-generic/global_data.h
/rk3399_rockchip-uboot/include/asm-generic/u-boot.h
/rk3399_rockchip-uboot/include/bidram.h
/rk3399_rockchip-uboot/include/boot_rkimg.h
/rk3399_rockchip-uboot/include/bootm.h
/rk3399_rockchip-uboot/include/clk.h
/rk3399_rockchip-uboot/include/common.h
/rk3399_rockchip-uboot/include/configs/am335x_evm.h
/rk3399_rockchip-uboot/include/configs/am3517_evm.h
/rk3399_rockchip-uboot/include/configs/am43xx_evm.h
/rk3399_rockchip-uboot/include/configs/baltos.h
/rk3399_rockchip-uboot/include/configs/colibri_vf.h
/rk3399_rockchip-uboot/include/configs/dra7xx_evm.h
/rk3399_rockchip-uboot/include/configs/evb_rk3036.h
/rk3399_rockchip-uboot/include/configs/gw_ventana.h
/rk3399_rockchip-uboot/include/configs/h2200.h
/rk3399_rockchip-uboot/include/configs/ma5d4evk.h
/rk3399_rockchip-uboot/include/configs/nitrogen6x.h
/rk3399_rockchip-uboot/include/configs/novena.h
/rk3399_rockchip-uboot/include/configs/odroid_xu3.h
/rk3399_rockchip-uboot/include/configs/omap3_beagle.h
/rk3399_rockchip-uboot/include/configs/omap3_evm.h
/rk3399_rockchip-uboot/include/configs/omap3_logic.h
/rk3399_rockchip-uboot/include/configs/pcm051.h
/rk3399_rockchip-uboot/include/configs/px30_common.h
/rk3399_rockchip-uboot/include/configs/rk3036_common.h
/rk3399_rockchip-uboot/include/configs/rk322x_common.h
/rk3399_rockchip-uboot/include/configs/rk3288_common.h
/rk3399_rockchip-uboot/include/configs/rockchip-common.h
/rk3399_rockchip-uboot/include/configs/sama5d2_ptc.h
/rk3399_rockchip-uboot/include/configs/sansa_fuze_plus.h
/rk3399_rockchip-uboot/include/configs/siemens-am33x-common.h
/rk3399_rockchip-uboot/include/configs/tao3530.h
/rk3399_rockchip-uboot/include/configs/ti_armv7_keystone2.h
/rk3399_rockchip-uboot/include/configs/vinco.h
/rk3399_rockchip-uboot/include/configs/warp7.h
/rk3399_rockchip-uboot/include/configs/xfi3.h
/rk3399_rockchip-uboot/include/configs/xilinx_zynqmp.h
/rk3399_rockchip-uboot/include/crypto.h
/rk3399_rockchip-uboot/include/dm/of_access.h
/rk3399_rockchip-uboot/include/dm/ofnode.h
/rk3399_rockchip-uboot/include/dm/read.h
/rk3399_rockchip-uboot/include/dm/uclass-id.h
/rk3399_rockchip-uboot/include/dt-bindings/clock/rk3036-cru.h
/rk3399_rockchip-uboot/include/dt-bindings/pinctrl/rockchip.h
/rk3399_rockchip-uboot/include/dwc3-uboot.h
/rk3399_rockchip-uboot/include/efi_api.h
/rk3399_rockchip-uboot/include/efi_loader.h
/rk3399_rockchip-uboot/include/environment.h
/rk3399_rockchip-uboot/include/image.h
/rk3399_rockchip-uboot/include/linux/bitmap.h
/rk3399_rockchip-uboot/include/linux/bug.h
/rk3399_rockchip-uboot/include/linux/compiler-gcc.h
/rk3399_rockchip-uboot/include/linux/media-bus-format.h
/rk3399_rockchip-uboot/include/linux/types.h
/rk3399_rockchip-uboot/include/linux/usb/composite.h
/rk3399_rockchip-uboot/include/linux/usb/gadget.h
/rk3399_rockchip-uboot/include/linux/usb/otg.h
/rk3399_rockchip-uboot/include/linux/usb/phy.h
/rk3399_rockchip-uboot/include/memblk.h
/rk3399_rockchip-uboot/include/misc.h
/rk3399_rockchip-uboot/include/mmc.h
/rk3399_rockchip-uboot/include/reset.h
/rk3399_rockchip-uboot/include/rockchip/crypto_v2.h
/rk3399_rockchip-uboot/include/sdp.h
/rk3399_rockchip-uboot/include/serial.h
/rk3399_rockchip-uboot/include/u-boot/rsa-mod-exp.h
/rk3399_rockchip-uboot/include/u-boot/rsa.h
/rk3399_rockchip-uboot/include/usb.h
/rk3399_rockchip-uboot/include/usb/dwc2_udc.h
/rk3399_rockchip-uboot/include/usb/xhci.h
/rk3399_rockchip-uboot/include/write_keybox.h
/rk3399_rockchip-uboot/lib/Makefile
/rk3399_rockchip-uboot/lib/avb/libavb/avb_slot_verify.c
/rk3399_rockchip-uboot/lib/avb/libavb_user/Kconfig
/rk3399_rockchip-uboot/lib/avb/libavb_user/avb_ops_user.c
/rk3399_rockchip-uboot/lib/bidram.c
/rk3399_rockchip-uboot/lib/efi_loader/Makefile
/rk3399_rockchip-uboot/lib/efi_loader/efi_boottime.c
/rk3399_rockchip-uboot/lib/efi_loader/efi_device_path.c
/rk3399_rockchip-uboot/lib/efi_loader/efi_disk.c
/rk3399_rockchip-uboot/lib/efi_loader/efi_net.c
/rk3399_rockchip-uboot/lib/fdtdec.c
/rk3399_rockchip-uboot/lib/rsa/rsa-checksum.c
/rk3399_rockchip-uboot/lib/rsa/rsa-mod-exp.c
/rk3399_rockchip-uboot/lib/rsa/rsa-sign.c
/rk3399_rockchip-uboot/lib/rsa/rsa-verify.c
/rk3399_rockchip-uboot/lib/sysmem.c
/rk3399_rockchip-uboot/make.sh
/rk3399_rockchip-uboot/scripts/Makefile.spl
/rk3399_rockchip-uboot/scripts/README.rockchip
/rk3399_rockchip-uboot/scripts/config_whitelist.txt
/rk3399_rockchip-uboot/scripts/repack-bootimg
/rk3399_rockchip-uboot/scripts/rkpatch.sh
/rk3399_rockchip-uboot/scripts/setlocalversion
/rk3399_rockchip-uboot/scripts/stacktrace.sh
/rk3399_rockchip-uboot/test/dm/Makefile
/rk3399_rockchip-uboot/test/dm/clk.c
/rk3399_rockchip-uboot/test/dm/cmd_dm.c
/rk3399_rockchip-uboot/test/dm/nop.c
/rk3399_rockchip-uboot/test/dm/reset.c
/rk3399_rockchip-uboot/test/rockchip/test-rockchip.c
/rk3399_rockchip-uboot/test/rockchip/test-storage.c
/rk3399_rockchip-uboot/tools/fdt_host.h
/rk3399_rockchip-uboot/tools/fit_check_sign.c
/rk3399_rockchip-uboot/tools/fit_image.c
/rk3399_rockchip-uboot/tools/image-host.c
/rk3399_rockchip-uboot/tools/imagetool.h
/rk3399_rockchip-uboot/tools/mkimage.c
/rk3399_rockchip-uboot/tools/rkcommon.c
/rk3399_rockchip-uboot/tools/rkcommon.h
/rk3399_rockchip-uboot/tools/rknand.c
/rk3399_rockchip-uboot/tools/rksd.c
/rk3399_rockchip-uboot/tools/rkspi.c
ad65dd8612-Nov-2019 Jon Lin <jon.lin@rock-chips.com>

mtd: spinand: support GD5F2GQ4UExxG

Change-Id: If7b0c17129b9a914fc6854959cf074b33b876a5e
Signed-off-by: Jon Lin <jon.lin@rock-chips.com>


/rk3399_rockchip-uboot/Makefile
/rk3399_rockchip-uboot/arch/arm/dts/px30.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3308-evb.dts
/rk3399_rockchip-uboot/arch/arm/dts/rk3308-u-boot.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3308.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3368-px5-evb-u-boot.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3368-px5-evb.dts
/rk3399_rockchip-uboot/arch/arm/dts/rv1108-evb.dts
/rk3399_rockchip-uboot/arch/arm/dts/rv1108.dtsi
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/resource_img.h
/rk3399_rockchip-uboot/arch/arm/lib/interrupts.c
/rk3399_rockchip-uboot/arch/arm/lib/interrupts_64.c
/rk3399_rockchip-uboot/arch/arm/lib/stacktrace.c
/rk3399_rockchip-uboot/arch/arm/lib/stacktrace_64.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/board.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/boot_mode.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/param.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/resource_img.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3399/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3399/rk3399.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/spl-boot-order.c
/rk3399_rockchip-uboot/cmd/boot.c
/rk3399_rockchip-uboot/cmd/boot_android.c
/rk3399_rockchip-uboot/cmd/bootrkp.c
/rk3399_rockchip-uboot/cmd/nvedit.c
/rk3399_rockchip-uboot/common/android_bootloader.c
/rk3399_rockchip-uboot/common/board_info.c
/rk3399_rockchip-uboot/common/boot_rkimg.c
/rk3399_rockchip-uboot/common/bootm.c
/rk3399_rockchip-uboot/common/image-android.c
/rk3399_rockchip-uboot/common/write_keybox.c
/rk3399_rockchip-uboot/configs/android6.0-rk3399_defconfig
/rk3399_rockchip-uboot/configs/evb-aarch32-rk3308_defconfig
/rk3399_rockchip-uboot/configs/evb-px5_defconfig
/rk3399_rockchip-uboot/configs/evb-rk3308_defconfig
/rk3399_rockchip-uboot/configs/evb-rk3328_defconfig
/rk3399_rockchip-uboot/configs/evb-rk3399_defconfig
/rk3399_rockchip-uboot/configs/evb-rv1108_defconfig
/rk3399_rockchip-uboot/configs/firefly-rk3399_defconfig
/rk3399_rockchip-uboot/configs/puma-rk3399_defconfig
/rk3399_rockchip-uboot/configs/rk3126_defconfig
/rk3399_rockchip-uboot/configs/rk3308-aarch32_defconfig
/rk3399_rockchip-uboot/configs/rk3308_defconfig
/rk3399_rockchip-uboot/configs/rk3328_defconfig
/rk3399_rockchip-uboot/configs/rk3399_defconfig
/rk3399_rockchip-uboot/configs/rk3399pro_defconfig
/rk3399_rockchip-uboot/disk/part.c
/rk3399_rockchip-uboot/disk/part_efi.c
/rk3399_rockchip-uboot/drivers/core/device.c
/rk3399_rockchip-uboot/drivers/core/dump.c
/rk3399_rockchip-uboot/drivers/core/root.c
/rk3399_rockchip-uboot/drivers/input/key-uclass.c
/rk3399_rockchip-uboot/drivers/irq/irq-generic.c
/rk3399_rockchip-uboot/drivers/irq/irq-gpio.c
/rk3399_rockchip-uboot/drivers/irq/virq.c
/rk3399_rockchip-uboot/drivers/mtd/mtd_blk.c
spi/gigadevice.c
/rk3399_rockchip-uboot/drivers/pinctrl/pinctrl-rockchip.c
/rk3399_rockchip-uboot/drivers/power/pmic/rk8xx.c
/rk3399_rockchip-uboot/drivers/power/regulator/regulator-uclass.c
/rk3399_rockchip-uboot/drivers/rkflash/flash.c
/rk3399_rockchip-uboot/drivers/rkflash/flash.h
/rk3399_rockchip-uboot/drivers/rkflash/nandc.h
/rk3399_rockchip-uboot/drivers/rkflash/rk_sftl_arm_v7.S
/rk3399_rockchip-uboot/drivers/rkflash/rk_sftl_arm_v8.S
/rk3399_rockchip-uboot/drivers/rkflash/rkflash_api.c
/rk3399_rockchip-uboot/drivers/rkflash/rkflash_debug.c
/rk3399_rockchip-uboot/drivers/rkflash/rkflash_debug.h
/rk3399_rockchip-uboot/drivers/rkflash/sfc.h
/rk3399_rockchip-uboot/drivers/rkflash/sfc_nand.c
/rk3399_rockchip-uboot/drivers/rkflash/sfc_nand.h
/rk3399_rockchip-uboot/drivers/rkflash/sfc_nor.c
/rk3399_rockchip-uboot/drivers/rkflash/sfc_nor.h
/rk3399_rockchip-uboot/drivers/sysreset/Makefile
/rk3399_rockchip-uboot/drivers/sysreset/sysreset-syscon-reboot.c
/rk3399_rockchip-uboot/drivers/sysreset/sysreset-uclass.c
/rk3399_rockchip-uboot/drivers/usb/gadget/f_fastboot.c
/rk3399_rockchip-uboot/drivers/video/drm/rockchip_rgb.c
/rk3399_rockchip-uboot/include/android_avb/rk_avb_ops_user.h
/rk3399_rockchip-uboot/include/android_bootloader.h
/rk3399_rockchip-uboot/include/asm-generic/global_data.h
/rk3399_rockchip-uboot/include/asm-generic/u-boot.h
/rk3399_rockchip-uboot/include/boot_rkimg.h
/rk3399_rockchip-uboot/include/configs/rk3288_common.h
/rk3399_rockchip-uboot/include/configs/rk3328_common.h
/rk3399_rockchip-uboot/include/configs/rk3368_common.h
/rk3399_rockchip-uboot/include/configs/rk3399_common.h
/rk3399_rockchip-uboot/include/fastboot.h
/rk3399_rockchip-uboot/include/image.h
/rk3399_rockchip-uboot/include/irq-generic.h
/rk3399_rockchip-uboot/include/linux/media-bus-format.h
/rk3399_rockchip-uboot/include/sysreset.h
/rk3399_rockchip-uboot/include/u-boot/sha256.h
/rk3399_rockchip-uboot/include/write_keybox.h
/rk3399_rockchip-uboot/lib/avb/rk_avb_user/rk_avb_ops_user.c
/rk3399_rockchip-uboot/lib/fdtdec.c
/rk3399_rockchip-uboot/lib/sha256.c
/rk3399_rockchip-uboot/lib/sysmem.c
/rk3399_rockchip-uboot/make.sh
/rk3399_rockchip-uboot/scripts/mkbootimg
/rk3399_rockchip-uboot/scripts/repack-bootimg
/rk3399_rockchip-uboot/scripts/unpack_bootimg
/rk3399_rockchip-uboot/scripts/unpack_resource.sh
/rk3399_rockchip-uboot/tools/Makefile
/rk3399_rockchip-uboot/tools/rockchip/resource_tool.c
cb560f1915-Oct-2019 Jon Lin <jon.lin@rock-chips.com>

mtd: spinand: Fix GD5F1GQ4UExxG flash info table QE bit flag

Change-Id: Id55ae1dad8798e9c607d76831dc3309882227b3e
Signed-off-by: Jon Lin <jon.lin@rock-chips.com>


/rk3399_rockchip-uboot/arch/arm/dts/rk3308-u-boot.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3308.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3328-sdram-ddr3-666.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3328-sdram-ddr4-666.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3328-sdram-lpddr3-666.dtsi
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/sdram.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/sdram_common.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/sdram_msch.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/sdram_pctl_px30.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/sdram_phy_px30.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/sdram_px30.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/sdram_rk3288.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/sdram_rk3328.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/sdram_rk3399.h
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3036/sdram_rk3036.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3066/sdram_rk3066.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rv1108/rv1108.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/sdram.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/spl-boot-order.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/spl.c
/rk3399_rockchip-uboot/cmd/bootrkp.c
/rk3399_rockchip-uboot/cmd/crypto.c
/rk3399_rockchip-uboot/cmd/ddr_tool/ddr_test_px30.S
/rk3399_rockchip-uboot/cmd/ddr_tool/ddr_test_rk1808.S
/rk3399_rockchip-uboot/cmd/ddr_tool/ddr_test_rk3328.S
/rk3399_rockchip-uboot/cmd/memtester/io_map.c
/rk3399_rockchip-uboot/cmd/rockusb.c
/rk3399_rockchip-uboot/common/fdt_support.c
/rk3399_rockchip-uboot/common/spl/spl_mtd_blk.c
/rk3399_rockchip-uboot/configs/android6.0-rk3399_defconfig
/rk3399_rockchip-uboot/configs/evb-px30_defconfig
/rk3399_rockchip-uboot/configs/evb-rk3326_defconfig
/rk3399_rockchip-uboot/configs/evb-rk3328_defconfig
/rk3399_rockchip-uboot/configs/evb-rk3399_defconfig
/rk3399_rockchip-uboot/configs/firefly-rk3399_defconfig
/rk3399_rockchip-uboot/configs/puma-rk3399_defconfig
/rk3399_rockchip-uboot/configs/px30_defconfig
/rk3399_rockchip-uboot/configs/rk1808_defconfig
/rk3399_rockchip-uboot/configs/rk3326-aarch32_defconfig
/rk3399_rockchip-uboot/configs/rk3326_defconfig
/rk3399_rockchip-uboot/configs/rk3328_defconfig
/rk3399_rockchip-uboot/configs/rk3368_defconfig
/rk3399_rockchip-uboot/configs/rk3399_defconfig
/rk3399_rockchip-uboot/configs/rk3399pro_defconfig
/rk3399_rockchip-uboot/drivers/Makefile
/rk3399_rockchip-uboot/drivers/block/blk-uclass.c
/rk3399_rockchip-uboot/drivers/clk/rockchip/clk_rk3308.c
/rk3399_rockchip-uboot/drivers/clk/rockchip/clk_rk3399.c
/rk3399_rockchip-uboot/drivers/crypto/crypto-uclass.c
/rk3399_rockchip-uboot/drivers/crypto/rockchip/crypto_v2.c
/rk3399_rockchip-uboot/drivers/mtd/mtd_blk.c
spi/gigadevice.c
/rk3399_rockchip-uboot/drivers/mtd/spi/sf_probe.c
/rk3399_rockchip-uboot/drivers/mtd/spi/spi-nor-ids.c
/rk3399_rockchip-uboot/drivers/ram/rockchip/Kconfig
/rk3399_rockchip-uboot/drivers/ram/rockchip/Makefile
/rk3399_rockchip-uboot/drivers/ram/rockchip/dmc-rk3368.c
/rk3399_rockchip-uboot/drivers/ram/rockchip/rockchip_sdram.c
/rk3399_rockchip-uboot/drivers/ram/rockchip/sdram_common.c
/rk3399_rockchip-uboot/drivers/ram/rockchip/sdram_pctl_px30.c
/rk3399_rockchip-uboot/drivers/ram/rockchip/sdram_phy_px30.c
/rk3399_rockchip-uboot/drivers/ram/rockchip/sdram_px30.c
/rk3399_rockchip-uboot/drivers/ram/rockchip/sdram_rk3128.c
/rk3399_rockchip-uboot/drivers/ram/rockchip/sdram_rk3188.c
/rk3399_rockchip-uboot/drivers/ram/rockchip/sdram_rk322x.c
/rk3399_rockchip-uboot/drivers/ram/rockchip/sdram_rk3288.c
/rk3399_rockchip-uboot/drivers/ram/rockchip/sdram_rk3328.c
/rk3399_rockchip-uboot/drivers/ram/rockchip/sdram_rk3399.c
/rk3399_rockchip-uboot/drivers/ram/rockchip/sdram_rv1108.c
/rk3399_rockchip-uboot/drivers/ram/rockchip/sdram_rv1108_pctl_phy.c
/rk3399_rockchip-uboot/drivers/spi/rockchip_sfc.c
/rk3399_rockchip-uboot/include/configs/rk1808_common.h
/rk3399_rockchip-uboot/include/configs/rockchip-common.h
/rk3399_rockchip-uboot/include/crypto.h
/rk3399_rockchip-uboot/include/rockchip/crypto_v2.h
/rk3399_rockchip-uboot/make.sh
b2ee20d326-Sep-2019 Jason Zhu <jason.zhu@rock-chips.com>

mtd: spinand: fix missing select target info

Change-Id: Iee5048f9ffabc9a4b7a3f6ef2dc1e3f2d819eda9
Signed-off-by: Jason Zhu <jason.zhu@rock-chips.com>


/rk3399_rockchip-uboot/arch/arm/dts/px30-evb.dts
/rk3399_rockchip-uboot/arch/arm/dts/px30-u-boot.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3128-evb.dts
/rk3399_rockchip-uboot/arch/arm/dts/rk3308-evb.dts
/rk3399_rockchip-uboot/arch/arm/include/asm/spl.h
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/px30/px30.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/resource_img.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/spl-boot-order.c
/rk3399_rockchip-uboot/cmd/android.c
/rk3399_rockchip-uboot/cmd/fastboot/Kconfig
/rk3399_rockchip-uboot/common/Kconfig
/rk3399_rockchip-uboot/common/android_bootloader.c
/rk3399_rockchip-uboot/common/image-android.c
/rk3399_rockchip-uboot/common/spl/Makefile
/rk3399_rockchip-uboot/common/spl/spl_mtd_blk.c
/rk3399_rockchip-uboot/configs/evb-aarch32-rk3308_defconfig
/rk3399_rockchip-uboot/configs/evb-px30_defconfig
/rk3399_rockchip-uboot/configs/evb-rk3128_defconfig
/rk3399_rockchip-uboot/configs/evb-rk3308_defconfig
/rk3399_rockchip-uboot/configs/evb-rk3326_defconfig
/rk3399_rockchip-uboot/configs/firefly-rk3399_defconfig
/rk3399_rockchip-uboot/configs/px30_defconfig
/rk3399_rockchip-uboot/configs/rk1808_defconfig
/rk3399_rockchip-uboot/configs/rk3036_defconfig
/rk3399_rockchip-uboot/configs/rk3126_defconfig
/rk3399_rockchip-uboot/configs/rk3128x_defconfig
/rk3399_rockchip-uboot/configs/rk322x_defconfig
/rk3399_rockchip-uboot/configs/rk3288_defconfig
/rk3399_rockchip-uboot/configs/rk3326-aarch32_defconfig
/rk3399_rockchip-uboot/configs/rk3326_defconfig
/rk3399_rockchip-uboot/configs/rk3328_defconfig
/rk3399_rockchip-uboot/configs/rk3368_defconfig
/rk3399_rockchip-uboot/configs/rk3399pro_defconfig
/rk3399_rockchip-uboot/configs/rknpu-lion_defconfig
/rk3399_rockchip-uboot/disk/part_efi.c
/rk3399_rockchip-uboot/drivers/clk/rockchip/clk_rk3368.c
/rk3399_rockchip-uboot/drivers/crypto/Kconfig
/rk3399_rockchip-uboot/drivers/crypto/Makefile
/rk3399_rockchip-uboot/drivers/crypto/rockchip/Kconfig
/rk3399_rockchip-uboot/drivers/crypto/rockchip/Makefile
/rk3399_rockchip-uboot/drivers/i2c/i2c-uclass.c
/rk3399_rockchip-uboot/drivers/irq/irq-gic.c
/rk3399_rockchip-uboot/drivers/mtd/mtd_blk.c
spi/winbond.c
/rk3399_rockchip-uboot/drivers/ram/rockchip/sdram_px30.c
/rk3399_rockchip-uboot/drivers/rknand/rk_ftl_arm_v7.S
/rk3399_rockchip-uboot/drivers/rknand/rk_ftl_arm_v8.S
/rk3399_rockchip-uboot/drivers/rknand/rk_zftl_arm_v7.S
/rk3399_rockchip-uboot/drivers/rknand/rk_zftl_arm_v8.S
/rk3399_rockchip-uboot/drivers/video/bridge/video-bridge-uclass.c
/rk3399_rockchip-uboot/drivers/video/drm/Kconfig
/rk3399_rockchip-uboot/drivers/video/drm/Makefile
/rk3399_rockchip-uboot/drivers/video/drm/rk1000.c
/rk3399_rockchip-uboot/drivers/video/drm/rk1000.h
/rk3399_rockchip-uboot/drivers/video/drm/rk1000_tve.c
/rk3399_rockchip-uboot/drivers/video/drm/rockchip_display.c
/rk3399_rockchip-uboot/drivers/video/drm/rockchip_dw_hdmi.c
/rk3399_rockchip-uboot/drivers/video/drm/rockchip_rgb.c
/rk3399_rockchip-uboot/include/android_avb/avb_cmdline.h
/rk3399_rockchip-uboot/include/android_avb/avb_ops.h
/rk3399_rockchip-uboot/include/android_avb/avb_sha.h
/rk3399_rockchip-uboot/include/android_avb/avb_slot_verify.h
/rk3399_rockchip-uboot/include/android_avb/avb_sysdeps.h
/rk3399_rockchip-uboot/include/android_image.h
/rk3399_rockchip-uboot/include/configs/px30_common.h
/rk3399_rockchip-uboot/include/configs/rk3066_common.h
/rk3399_rockchip-uboot/include/configs/rk322x_common.h
/rk3399_rockchip-uboot/include/configs/rk3288_common.h
/rk3399_rockchip-uboot/include/configs/rk3308_common.h
/rk3399_rockchip-uboot/include/configs/rk3328_common.h
/rk3399_rockchip-uboot/include/configs/rk3368_common.h
/rk3399_rockchip-uboot/include/configs/rk3399_common.h
/rk3399_rockchip-uboot/include/drm_modes.h
/rk3399_rockchip-uboot/include/image.h
/rk3399_rockchip-uboot/include/irq-platform.h
/rk3399_rockchip-uboot/include/linux/compat.h
/rk3399_rockchip-uboot/include/video_bridge.h
/rk3399_rockchip-uboot/lib/avb/libavb/avb_cmdline.c
/rk3399_rockchip-uboot/lib/avb/libavb/avb_descriptor.c
/rk3399_rockchip-uboot/lib/avb/libavb/avb_sha256.c
/rk3399_rockchip-uboot/lib/avb/libavb/avb_sha512.c
/rk3399_rockchip-uboot/lib/avb/libavb/avb_slot_verify.c
/rk3399_rockchip-uboot/lib/avb/libavb/avb_sysdeps_posix.c
/rk3399_rockchip-uboot/lib/avb/libavb/avb_vbmeta_image.c
/rk3399_rockchip-uboot/lib/avb/libavb_atx/avb_atx_validate.c
/rk3399_rockchip-uboot/lib/avb/rk_avb_user/rk_avb_ops_user.c
/rk3399_rockchip-uboot/test/rockchip/test-rockchip.c
/rk3399_rockchip-uboot/test/rockchip/test-storage.c
/rk3399_rockchip-uboot/tools/rkcommon.c
2ec0548927-Aug-2019 Jon Lin <jon.lin@rock-chips.com>

mtd: spinand: add support for Winbond W25N01GV

Change-Id: I93371926314363014d9232d78827c42b18957424
Signed-off-by: Jon Lin <jon.lin@rock-chips.com>

6c65ad5022-Aug-2019 Jason Zhu <jason.zhu@rock-chips.com>

mtd: nand: rockchip: avoid initializing nand driver twice

Change-Id: Id643cbdaf3df1b57ef16a52004c2192944d1f289
Signed-off-by: Jason Zhu <jason.zhu@rock-chips.com>

b1758eda13-Aug-2019 Jason Zhu <jason.zhu@rock-chips.com>

mtd: nand: rockchip: initialize uclass private data mtd_info

Change-Id: I5399454ab3c6e5c24f72a4bde81348218991d354
Signed-off-by: Jason Zhu <jason.zhu@rock-chips.com>

05b7d88412-Aug-2019 Jason Zhu <jason.zhu@rock-chips.com>

mtd: spinand: bind spinand device to mtd block

Change-Id: I90693daafe41ee356b36711353426b60108630f3
Signed-off-by: Jason Zhu <jason.zhu@rock-chips.com>


/rk3399_rockchip-uboot/README
/rk3399_rockchip-uboot/api/api_platform-powerpc.c
/rk3399_rockchip-uboot/arch/Kconfig
/rk3399_rockchip-uboot/arch/arm/Kconfig
/rk3399_rockchip-uboot/arch/arm/dts/rk3328-evb-u-boot.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3328-evb.dts
/rk3399_rockchip-uboot/arch/arm/dts/rk3328-u-boot.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3328.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3399.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rv1108-u-boot.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rv1108.dtsi
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mvebu/spi.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/rk_atags.h
/rk3399_rockchip-uboot/arch/arm/lib/bootm-fdt.c
/rk3399_rockchip-uboot/arch/arm/mach-at91/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-kirkwood/include/mach/config.h
/rk3399_rockchip-uboot/arch/arm/mach-mvebu/include/mach/config.h
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/board.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/boot_mode.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/hotkey.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/memblk.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/resource_img.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk1808/rk1808.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3308/rk3308.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk_atags.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/spl.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/Kconfig
/rk3399_rockchip-uboot/arch/powerpc/Kconfig
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xx/Kconfig
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xx/cpu.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xx/cpu_init.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xx/immap.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xx/interrupts.c
/rk3399_rockchip-uboot/arch/powerpc/include/asm/cache.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/cpm_8xx.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/global_data.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/immap_8xx.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/iopin_8xx.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/ppc.h
/rk3399_rockchip-uboot/board/rockchip/evb_rk3128/evb-rk3128.c
/rk3399_rockchip-uboot/cmd/Kconfig
/rk3399_rockchip-uboot/cmd/Makefile
/rk3399_rockchip-uboot/cmd/android.c
/rk3399_rockchip-uboot/cmd/bdinfo.c
/rk3399_rockchip-uboot/cmd/bootrkp.c
/rk3399_rockchip-uboot/cmd/crypto.c
/rk3399_rockchip-uboot/cmd/download.c
/rk3399_rockchip-uboot/cmd/eeprom.c
/rk3399_rockchip-uboot/cmd/mtd.c
/rk3399_rockchip-uboot/cmd/optee.c
/rk3399_rockchip-uboot/common/Kconfig
/rk3399_rockchip-uboot/common/android_bootloader.c
/rk3399_rockchip-uboot/common/board_f.c
/rk3399_rockchip-uboot/common/board_r.c
/rk3399_rockchip-uboot/common/boot_rkimg.c
/rk3399_rockchip-uboot/common/console.c
/rk3399_rockchip-uboot/common/edid.c
/rk3399_rockchip-uboot/common/image-fdt.c
/rk3399_rockchip-uboot/common/spl/Kconfig
/rk3399_rockchip-uboot/common/spl/Makefile
/rk3399_rockchip-uboot/common/spl/spl.c
/rk3399_rockchip-uboot/common/spl/spl_ab.c
/rk3399_rockchip-uboot/common/spl/spl_mmc.c
/rk3399_rockchip-uboot/common/stdio.c
/rk3399_rockchip-uboot/common/write_keybox.c
/rk3399_rockchip-uboot/configs/B4420QDS_NAND_defconfig
/rk3399_rockchip-uboot/configs/B4420QDS_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/B4420QDS_defconfig
/rk3399_rockchip-uboot/configs/B4860QDS_NAND_defconfig
/rk3399_rockchip-uboot/configs/B4860QDS_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/B4860QDS_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/B4860QDS_SRIO_PCIE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/B4860QDS_defconfig
/rk3399_rockchip-uboot/configs/BSC9131RDB_NAND_SYSCLK100_defconfig
/rk3399_rockchip-uboot/configs/BSC9131RDB_NAND_defconfig
/rk3399_rockchip-uboot/configs/BSC9131RDB_SPIFLASH_SYSCLK100_defconfig
/rk3399_rockchip-uboot/configs/BSC9131RDB_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_NAND_DDRCLK100_SECURE_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_NAND_DDRCLK100_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_NAND_DDRCLK133_SECURE_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_NAND_DDRCLK133_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_NOR_DDRCLK100_SECURE_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_NOR_DDRCLK100_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_NOR_DDRCLK133_SECURE_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_NOR_DDRCLK133_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_SDCARD_DDRCLK100_SECURE_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_SDCARD_DDRCLK100_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_SDCARD_DDRCLK133_SECURE_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_SDCARD_DDRCLK133_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_SPIFLASH_DDRCLK100_SECURE_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_SPIFLASH_DDRCLK100_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_SPIFLASH_DDRCLK133_SECURE_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_SPIFLASH_DDRCLK133_defconfig
/rk3399_rockchip-uboot/configs/C29XPCIE_NAND_defconfig
/rk3399_rockchip-uboot/configs/C29XPCIE_NOR_SECBOOT_defconfig
/rk3399_rockchip-uboot/configs/C29XPCIE_SPIFLASH_SECBOOT_defconfig
/rk3399_rockchip-uboot/configs/C29XPCIE_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/C29XPCIE_defconfig
/rk3399_rockchip-uboot/configs/Cyrus_P5020_defconfig
/rk3399_rockchip-uboot/configs/Cyrus_P5040_defconfig
/rk3399_rockchip-uboot/configs/M52277EVB_defconfig
/rk3399_rockchip-uboot/configs/M52277EVB_stmicro_defconfig
/rk3399_rockchip-uboot/configs/M54418TWR_defconfig
/rk3399_rockchip-uboot/configs/M54418TWR_nand_mii_defconfig
/rk3399_rockchip-uboot/configs/M54418TWR_nand_rmii_defconfig
/rk3399_rockchip-uboot/configs/M54418TWR_nand_rmii_lowfreq_defconfig
/rk3399_rockchip-uboot/configs/M54418TWR_serial_mii_defconfig
/rk3399_rockchip-uboot/configs/M54418TWR_serial_rmii_defconfig
/rk3399_rockchip-uboot/configs/M54451EVB_defconfig
/rk3399_rockchip-uboot/configs/M54451EVB_stmicro_defconfig
/rk3399_rockchip-uboot/configs/M54455EVB_a66_defconfig
/rk3399_rockchip-uboot/configs/M54455EVB_defconfig
/rk3399_rockchip-uboot/configs/M54455EVB_i66_defconfig
/rk3399_rockchip-uboot/configs/M54455EVB_intel_defconfig
/rk3399_rockchip-uboot/configs/M54455EVB_stm33_defconfig
/rk3399_rockchip-uboot/configs/MCR3000_defconfig
/rk3399_rockchip-uboot/configs/MPC8349EMDS_defconfig
/rk3399_rockchip-uboot/configs/MPC8536DS_36BIT_defconfig
/rk3399_rockchip-uboot/configs/MPC8536DS_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/MPC8536DS_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/MPC8536DS_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PA_36BIT_NAND_SECBOOT_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PA_36BIT_NAND_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PA_36BIT_NOR_SECBOOT_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PA_36BIT_NOR_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PA_36BIT_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PA_36BIT_SPIFLASH_SECBOOT_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PA_36BIT_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PA_NAND_SECBOOT_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PA_NAND_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PA_NOR_SECBOOT_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PA_NOR_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PA_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PA_SPIFLASH_SECBOOT_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PA_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PB_36BIT_NAND_SECBOOT_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PB_36BIT_NAND_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PB_36BIT_NOR_SECBOOT_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PB_36BIT_NOR_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PB_36BIT_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PB_36BIT_SPIFLASH_SECBOOT_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PB_36BIT_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PB_NAND_SECBOOT_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PB_NAND_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PB_NOR_SECBOOT_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PB_NOR_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PB_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PB_SPIFLASH_SECBOOT_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PB_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P1020MBG-PC_36BIT_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1020MBG-PC_36BIT_defconfig
/rk3399_rockchip-uboot/configs/P1020MBG-PC_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1020MBG-PC_defconfig
/rk3399_rockchip-uboot/configs/P1020RDB-PC_36BIT_NAND_defconfig
/rk3399_rockchip-uboot/configs/P1020RDB-PC_36BIT_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1020RDB-PC_36BIT_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P1020RDB-PC_36BIT_defconfig
/rk3399_rockchip-uboot/configs/P1020RDB-PC_NAND_defconfig
/rk3399_rockchip-uboot/configs/P1020RDB-PC_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1020RDB-PC_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P1020RDB-PC_defconfig
/rk3399_rockchip-uboot/configs/P1020RDB-PD_NAND_defconfig
/rk3399_rockchip-uboot/configs/P1020RDB-PD_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1020RDB-PD_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P1020RDB-PD_defconfig
/rk3399_rockchip-uboot/configs/P1020UTM-PC_36BIT_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1020UTM-PC_36BIT_defconfig
/rk3399_rockchip-uboot/configs/P1020UTM-PC_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1020UTM-PC_defconfig
/rk3399_rockchip-uboot/configs/P1021RDB-PC_36BIT_NAND_defconfig
/rk3399_rockchip-uboot/configs/P1021RDB-PC_36BIT_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1021RDB-PC_36BIT_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P1021RDB-PC_36BIT_defconfig
/rk3399_rockchip-uboot/configs/P1021RDB-PC_NAND_defconfig
/rk3399_rockchip-uboot/configs/P1021RDB-PC_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1021RDB-PC_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P1021RDB-PC_defconfig
/rk3399_rockchip-uboot/configs/P1022DS_36BIT_NAND_defconfig
/rk3399_rockchip-uboot/configs/P1022DS_36BIT_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1022DS_36BIT_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P1022DS_36BIT_defconfig
/rk3399_rockchip-uboot/configs/P1022DS_NAND_defconfig
/rk3399_rockchip-uboot/configs/P1022DS_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1022DS_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P1022DS_defconfig
/rk3399_rockchip-uboot/configs/P1024RDB_36BIT_defconfig
/rk3399_rockchip-uboot/configs/P1024RDB_NAND_defconfig
/rk3399_rockchip-uboot/configs/P1024RDB_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1024RDB_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P1024RDB_defconfig
/rk3399_rockchip-uboot/configs/P1025RDB_36BIT_defconfig
/rk3399_rockchip-uboot/configs/P1025RDB_NAND_defconfig
/rk3399_rockchip-uboot/configs/P1025RDB_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1025RDB_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P1025RDB_defconfig
/rk3399_rockchip-uboot/configs/P2020RDB-PC_36BIT_NAND_defconfig
/rk3399_rockchip-uboot/configs/P2020RDB-PC_36BIT_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P2020RDB-PC_36BIT_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P2020RDB-PC_36BIT_defconfig
/rk3399_rockchip-uboot/configs/P2020RDB-PC_NAND_defconfig
/rk3399_rockchip-uboot/configs/P2020RDB-PC_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P2020RDB-PC_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P2020RDB-PC_defconfig
/rk3399_rockchip-uboot/configs/P2041RDB_NAND_defconfig
/rk3399_rockchip-uboot/configs/P2041RDB_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P2041RDB_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/P2041RDB_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P2041RDB_SRIO_PCIE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/P2041RDB_defconfig
/rk3399_rockchip-uboot/configs/P3041DS_NAND_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/P3041DS_NAND_defconfig
/rk3399_rockchip-uboot/configs/P3041DS_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P3041DS_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/P3041DS_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P3041DS_SRIO_PCIE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/P3041DS_defconfig
/rk3399_rockchip-uboot/configs/P4080DS_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P4080DS_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/P4080DS_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P4080DS_SRIO_PCIE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/P4080DS_defconfig
/rk3399_rockchip-uboot/configs/P5020DS_NAND_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/P5020DS_NAND_defconfig
/rk3399_rockchip-uboot/configs/P5020DS_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P5020DS_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/P5020DS_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P5020DS_SRIO_PCIE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/P5020DS_defconfig
/rk3399_rockchip-uboot/configs/P5040DS_NAND_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/P5040DS_NAND_defconfig
/rk3399_rockchip-uboot/configs/P5040DS_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P5040DS_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/P5040DS_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P5040DS_defconfig
/rk3399_rockchip-uboot/configs/T1023RDB_NAND_defconfig
/rk3399_rockchip-uboot/configs/T1023RDB_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T1023RDB_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T1023RDB_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/T1023RDB_defconfig
/rk3399_rockchip-uboot/configs/T1024QDS_DDR4_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T1024QDS_DDR4_defconfig
/rk3399_rockchip-uboot/configs/T1024QDS_NAND_defconfig
/rk3399_rockchip-uboot/configs/T1024QDS_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T1024QDS_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T1024QDS_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/T1024QDS_defconfig
/rk3399_rockchip-uboot/configs/T1024RDB_NAND_defconfig
/rk3399_rockchip-uboot/configs/T1024RDB_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T1024RDB_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T1024RDB_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/T1024RDB_defconfig
/rk3399_rockchip-uboot/configs/T1040D4RDB_NAND_defconfig
/rk3399_rockchip-uboot/configs/T1040D4RDB_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T1040D4RDB_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T1040D4RDB_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/T1040D4RDB_defconfig
/rk3399_rockchip-uboot/configs/T1040QDS_DDR4_defconfig
/rk3399_rockchip-uboot/configs/T1040QDS_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T1040QDS_defconfig
/rk3399_rockchip-uboot/configs/T1040RDB_NAND_defconfig
/rk3399_rockchip-uboot/configs/T1040RDB_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T1040RDB_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T1040RDB_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/T1040RDB_defconfig
/rk3399_rockchip-uboot/configs/T1042D4RDB_NAND_defconfig
/rk3399_rockchip-uboot/configs/T1042D4RDB_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T1042D4RDB_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T1042D4RDB_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/T1042D4RDB_defconfig
/rk3399_rockchip-uboot/configs/T1042RDB_PI_NAND_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T1042RDB_PI_NAND_defconfig
/rk3399_rockchip-uboot/configs/T1042RDB_PI_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T1042RDB_PI_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/T1042RDB_PI_defconfig
/rk3399_rockchip-uboot/configs/T1042RDB_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T1042RDB_defconfig
/rk3399_rockchip-uboot/configs/T2080QDS_NAND_defconfig
/rk3399_rockchip-uboot/configs/T2080QDS_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T2080QDS_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T2080QDS_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/T2080QDS_SRIO_PCIE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T2080QDS_defconfig
/rk3399_rockchip-uboot/configs/T2080RDB_NAND_defconfig
/rk3399_rockchip-uboot/configs/T2080RDB_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T2080RDB_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T2080RDB_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/T2080RDB_SRIO_PCIE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T2080RDB_defconfig
/rk3399_rockchip-uboot/configs/T2081QDS_NAND_defconfig
/rk3399_rockchip-uboot/configs/T2081QDS_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T2081QDS_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/T2081QDS_SRIO_PCIE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T2081QDS_defconfig
/rk3399_rockchip-uboot/configs/T4160QDS_NAND_defconfig
/rk3399_rockchip-uboot/configs/T4160QDS_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T4160QDS_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T4160QDS_defconfig
/rk3399_rockchip-uboot/configs/T4160RDB_defconfig
/rk3399_rockchip-uboot/configs/T4240QDS_NAND_defconfig
/rk3399_rockchip-uboot/configs/T4240QDS_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T4240QDS_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T4240QDS_SRIO_PCIE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T4240QDS_defconfig
/rk3399_rockchip-uboot/configs/T4240RDB_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T4240RDB_defconfig
/rk3399_rockchip-uboot/configs/TWR-P1025_defconfig
/rk3399_rockchip-uboot/configs/UCP1020_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/UCP1020_defconfig
/rk3399_rockchip-uboot/configs/adp-ae3xx_defconfig
/rk3399_rockchip-uboot/configs/alt_defconfig
/rk3399_rockchip-uboot/configs/am335x_baltos_defconfig
/rk3399_rockchip-uboot/configs/am335x_boneblack_defconfig
/rk3399_rockchip-uboot/configs/am335x_boneblack_vboot_defconfig
/rk3399_rockchip-uboot/configs/am335x_evm_defconfig
/rk3399_rockchip-uboot/configs/am335x_evm_nor_defconfig
/rk3399_rockchip-uboot/configs/am335x_evm_norboot_defconfig
/rk3399_rockchip-uboot/configs/am335x_evm_spiboot_defconfig
/rk3399_rockchip-uboot/configs/am335x_evm_usbspl_defconfig
/rk3399_rockchip-uboot/configs/am335x_hs_evm_defconfig
/rk3399_rockchip-uboot/configs/am335x_hs_evm_uart_defconfig
/rk3399_rockchip-uboot/configs/am335x_igep003x_defconfig
/rk3399_rockchip-uboot/configs/am335x_shc_defconfig
/rk3399_rockchip-uboot/configs/am335x_shc_ict_defconfig
/rk3399_rockchip-uboot/configs/am335x_shc_netboot_defconfig
/rk3399_rockchip-uboot/configs/am335x_shc_prompt_defconfig
/rk3399_rockchip-uboot/configs/am335x_shc_sdboot_defconfig
/rk3399_rockchip-uboot/configs/am335x_shc_sdboot_prompt_defconfig
/rk3399_rockchip-uboot/configs/am335x_sl50_defconfig
/rk3399_rockchip-uboot/configs/am3517_evm_defconfig
/rk3399_rockchip-uboot/configs/am43xx_evm_defconfig
/rk3399_rockchip-uboot/configs/am43xx_evm_ethboot_defconfig
/rk3399_rockchip-uboot/configs/am43xx_evm_qspiboot_defconfig
/rk3399_rockchip-uboot/configs/am43xx_evm_usbhost_boot_defconfig
/rk3399_rockchip-uboot/configs/am43xx_hs_evm_defconfig
/rk3399_rockchip-uboot/configs/am57xx_evm_defconfig
/rk3399_rockchip-uboot/configs/am57xx_hs_evm_defconfig
/rk3399_rockchip-uboot/configs/ap121_defconfig
/rk3399_rockchip-uboot/configs/ap143_defconfig
/rk3399_rockchip-uboot/configs/at91sam9260ek_dataflash_cs0_defconfig
/rk3399_rockchip-uboot/configs/at91sam9260ek_dataflash_cs1_defconfig
/rk3399_rockchip-uboot/configs/at91sam9260ek_nandflash_defconfig
/rk3399_rockchip-uboot/configs/at91sam9261ek_dataflash_cs0_defconfig
/rk3399_rockchip-uboot/configs/at91sam9261ek_dataflash_cs3_defconfig
/rk3399_rockchip-uboot/configs/at91sam9261ek_nandflash_defconfig
/rk3399_rockchip-uboot/configs/at91sam9263ek_dataflash_cs0_defconfig
/rk3399_rockchip-uboot/configs/at91sam9263ek_dataflash_defconfig
/rk3399_rockchip-uboot/configs/at91sam9263ek_nandflash_defconfig
/rk3399_rockchip-uboot/configs/at91sam9263ek_norflash_boot_defconfig
/rk3399_rockchip-uboot/configs/at91sam9263ek_norflash_defconfig
/rk3399_rockchip-uboot/configs/at91sam9g10ek_dataflash_cs0_defconfig
/rk3399_rockchip-uboot/configs/at91sam9g10ek_dataflash_cs3_defconfig
/rk3399_rockchip-uboot/configs/at91sam9g10ek_nandflash_defconfig
/rk3399_rockchip-uboot/configs/at91sam9g20ek_2mmc_defconfig
/rk3399_rockchip-uboot/configs/at91sam9g20ek_2mmc_nandflash_defconfig
/rk3399_rockchip-uboot/configs/at91sam9g20ek_dataflash_cs0_defconfig
/rk3399_rockchip-uboot/configs/at91sam9g20ek_dataflash_cs1_defconfig
/rk3399_rockchip-uboot/configs/at91sam9g20ek_nandflash_defconfig
/rk3399_rockchip-uboot/configs/at91sam9n12ek_mmc_defconfig
/rk3399_rockchip-uboot/configs/at91sam9n12ek_nandflash_defconfig
/rk3399_rockchip-uboot/configs/at91sam9n12ek_spiflash_defconfig
/rk3399_rockchip-uboot/configs/at91sam9rlek_dataflash_defconfig
/rk3399_rockchip-uboot/configs/at91sam9rlek_mmc_defconfig
/rk3399_rockchip-uboot/configs/at91sam9rlek_nandflash_defconfig
/rk3399_rockchip-uboot/configs/at91sam9x5ek_dataflash_defconfig
/rk3399_rockchip-uboot/configs/at91sam9x5ek_mmc_defconfig
/rk3399_rockchip-uboot/configs/at91sam9x5ek_nandflash_defconfig
/rk3399_rockchip-uboot/configs/at91sam9x5ek_spiflash_defconfig
/rk3399_rockchip-uboot/configs/at91sam9xeek_dataflash_cs0_defconfig
/rk3399_rockchip-uboot/configs/at91sam9xeek_dataflash_cs1_defconfig
/rk3399_rockchip-uboot/configs/at91sam9xeek_nandflash_defconfig
/rk3399_rockchip-uboot/configs/bayleybay_defconfig
/rk3399_rockchip-uboot/configs/birdland_bav335a_defconfig
/rk3399_rockchip-uboot/configs/birdland_bav335b_defconfig
/rk3399_rockchip-uboot/configs/bk4r1_defconfig
/rk3399_rockchip-uboot/configs/brppt1_spi_defconfig
/rk3399_rockchip-uboot/configs/cairo_defconfig
/rk3399_rockchip-uboot/configs/chiliboard_defconfig
/rk3399_rockchip-uboot/configs/chromebook_link64_defconfig
/rk3399_rockchip-uboot/configs/chromebook_samus_defconfig
/rk3399_rockchip-uboot/configs/chromebox_panther_defconfig
/rk3399_rockchip-uboot/configs/cl-som-am57x_defconfig
/rk3399_rockchip-uboot/configs/clearfog_defconfig
/rk3399_rockchip-uboot/configs/cm_t3517_defconfig
/rk3399_rockchip-uboot/configs/cm_t35_defconfig
/rk3399_rockchip-uboot/configs/cm_t43_defconfig
/rk3399_rockchip-uboot/configs/cm_t54_defconfig
/rk3399_rockchip-uboot/configs/colibri_vf_defconfig
/rk3399_rockchip-uboot/configs/conga-qeval20-qa3-e3845-internal-uart_defconfig
/rk3399_rockchip-uboot/configs/conga-qeval20-qa3-e3845_defconfig
/rk3399_rockchip-uboot/configs/controlcenterd_36BIT_SDCARD_DEVELOP_defconfig
/rk3399_rockchip-uboot/configs/controlcenterd_36BIT_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/controlcenterdc_defconfig
/rk3399_rockchip-uboot/configs/coreboot-x86_defconfig
/rk3399_rockchip-uboot/configs/cougarcanyon2_defconfig
/rk3399_rockchip-uboot/configs/crownbay_defconfig
/rk3399_rockchip-uboot/configs/d2net_v2_defconfig
/rk3399_rockchip-uboot/configs/da850_am18xxevm_defconfig
/rk3399_rockchip-uboot/configs/da850evm_defconfig
/rk3399_rockchip-uboot/configs/da850evm_direct_nor_defconfig
/rk3399_rockchip-uboot/configs/db-88f6720_defconfig
/rk3399_rockchip-uboot/configs/db-88f6820-amc_defconfig
/rk3399_rockchip-uboot/configs/db-88f6820-gp_defconfig
/rk3399_rockchip-uboot/configs/db-mv784mp-gp_defconfig
/rk3399_rockchip-uboot/configs/devkit3250_defconfig
/rk3399_rockchip-uboot/configs/dfi-bt700-q7x-151_defconfig
/rk3399_rockchip-uboot/configs/dra7xx_evm_defconfig
/rk3399_rockchip-uboot/configs/dra7xx_hs_evm_defconfig
/rk3399_rockchip-uboot/configs/draco_defconfig
/rk3399_rockchip-uboot/configs/dreamplug_defconfig
/rk3399_rockchip-uboot/configs/ds109_defconfig
/rk3399_rockchip-uboot/configs/ds414_defconfig
/rk3399_rockchip-uboot/configs/duovero_defconfig
/rk3399_rockchip-uboot/configs/ea20_defconfig
/rk3399_rockchip-uboot/configs/efi-x86_defconfig
/rk3399_rockchip-uboot/configs/etamin_defconfig
/rk3399_rockchip-uboot/configs/ethernut5_defconfig
/rk3399_rockchip-uboot/configs/evb-px30_defconfig
/rk3399_rockchip-uboot/configs/evb-rk3066_defconfig
/rk3399_rockchip-uboot/configs/evb-rk3128_defconfig
/rk3399_rockchip-uboot/configs/evb-rk3326_defconfig
/rk3399_rockchip-uboot/configs/galileo_defconfig
/rk3399_rockchip-uboot/configs/gose_defconfig
/rk3399_rockchip-uboot/configs/gurnard_defconfig
/rk3399_rockchip-uboot/configs/ids8313_defconfig
/rk3399_rockchip-uboot/configs/igep0032_defconfig
/rk3399_rockchip-uboot/configs/igep00x0_defconfig
/rk3399_rockchip-uboot/configs/inetspace_v2_defconfig
/rk3399_rockchip-uboot/configs/k2e_evm_defconfig
/rk3399_rockchip-uboot/configs/k2e_hs_evm_defconfig
/rk3399_rockchip-uboot/configs/k2g_evm_defconfig
/rk3399_rockchip-uboot/configs/k2g_hs_evm_defconfig
/rk3399_rockchip-uboot/configs/k2hk_evm_defconfig
/rk3399_rockchip-uboot/configs/k2hk_hs_evm_defconfig
/rk3399_rockchip-uboot/configs/k2l_evm_defconfig
/rk3399_rockchip-uboot/configs/km_kirkwood_128m16_defconfig
/rk3399_rockchip-uboot/configs/km_kirkwood_defconfig
/rk3399_rockchip-uboot/configs/km_kirkwood_pci_defconfig
/rk3399_rockchip-uboot/configs/kmcoge4_defconfig
/rk3399_rockchip-uboot/configs/kmcoge5un_defconfig
/rk3399_rockchip-uboot/configs/kmlion1_defconfig
/rk3399_rockchip-uboot/configs/kmnusa_defconfig
/rk3399_rockchip-uboot/configs/kmsugp1_defconfig
/rk3399_rockchip-uboot/configs/kmsuv31_defconfig
/rk3399_rockchip-uboot/configs/koelsch_defconfig
/rk3399_rockchip-uboot/configs/lager_defconfig
/rk3399_rockchip-uboot/configs/legoev3_defconfig
/rk3399_rockchip-uboot/configs/ls1012afrdm_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls1012aqds_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls1012ardb_qspi_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/ls1012ardb_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls1021aiot_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls1021aiot_sdcard_defconfig
/rk3399_rockchip-uboot/configs/ls1021aqds_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls1021aqds_sdcard_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls1021atwr_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls1021atwr_sdcard_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls1043aqds_defconfig
/rk3399_rockchip-uboot/configs/ls1043aqds_lpuart_defconfig
/rk3399_rockchip-uboot/configs/ls1043aqds_nand_defconfig
/rk3399_rockchip-uboot/configs/ls1043aqds_nor_ddr3_defconfig
/rk3399_rockchip-uboot/configs/ls1043aqds_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls1043aqds_sdcard_ifc_defconfig
/rk3399_rockchip-uboot/configs/ls1043aqds_sdcard_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls1043ardb_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/ls1043ardb_defconfig
/rk3399_rockchip-uboot/configs/ls1043ardb_nand_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/ls1043ardb_nand_defconfig
/rk3399_rockchip-uboot/configs/ls1043ardb_sdcard_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/ls1043ardb_sdcard_defconfig
/rk3399_rockchip-uboot/configs/ls1046aqds_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/ls1046aqds_defconfig
/rk3399_rockchip-uboot/configs/ls1046aqds_lpuart_defconfig
/rk3399_rockchip-uboot/configs/ls1046aqds_nand_defconfig
/rk3399_rockchip-uboot/configs/ls1046aqds_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls1046aqds_sdcard_ifc_defconfig
/rk3399_rockchip-uboot/configs/ls1046aqds_sdcard_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls1046ardb_emmc_defconfig
/rk3399_rockchip-uboot/configs/ls1046ardb_qspi_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/ls1046ardb_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls1046ardb_sdcard_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/ls1046ardb_sdcard_defconfig
/rk3399_rockchip-uboot/configs/ls2080aqds_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/ls2080aqds_defconfig
/rk3399_rockchip-uboot/configs/ls2080aqds_nand_defconfig
/rk3399_rockchip-uboot/configs/ls2080aqds_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls2080aqds_sdcard_defconfig
/rk3399_rockchip-uboot/configs/ls2080ardb_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/ls2080ardb_defconfig
/rk3399_rockchip-uboot/configs/ls2081ardb_defconfig
/rk3399_rockchip-uboot/configs/ls2088ardb_qspi_defconfig
/rk3399_rockchip-uboot/configs/lschlv2_defconfig
/rk3399_rockchip-uboot/configs/lsxhl_defconfig
/rk3399_rockchip-uboot/configs/m28evk_defconfig
/rk3399_rockchip-uboot/configs/maxbcm_defconfig
/rk3399_rockchip-uboot/configs/meesc_dataflash_defconfig
/rk3399_rockchip-uboot/configs/meesc_defconfig
/rk3399_rockchip-uboot/configs/mgcoge3un_defconfig
/rk3399_rockchip-uboot/configs/minnowmax_defconfig
/rk3399_rockchip-uboot/configs/mvebu_db_armada8k_defconfig
/rk3399_rockchip-uboot/configs/mvebu_mcbin-88f8040_defconfig
/rk3399_rockchip-uboot/configs/mx28evk_auart_console_defconfig
/rk3399_rockchip-uboot/configs/mx28evk_defconfig
/rk3399_rockchip-uboot/configs/mx28evk_nand_defconfig
/rk3399_rockchip-uboot/configs/mx28evk_spi_defconfig
/rk3399_rockchip-uboot/configs/mx6sxsabreauto_defconfig
/rk3399_rockchip-uboot/configs/mx6ul_14x14_evk_defconfig
/rk3399_rockchip-uboot/configs/mx6ul_9x9_evk_defconfig
/rk3399_rockchip-uboot/configs/mx6ull_14x14_evk_defconfig
/rk3399_rockchip-uboot/configs/mx6ull_14x14_evk_plugin_defconfig
/rk3399_rockchip-uboot/configs/mx7dsabresd_defconfig
/rk3399_rockchip-uboot/configs/mx7dsabresd_secure_defconfig
/rk3399_rockchip-uboot/configs/net2big_v2_defconfig
/rk3399_rockchip-uboot/configs/netspace_lite_v2_defconfig
/rk3399_rockchip-uboot/configs/netspace_max_v2_defconfig
/rk3399_rockchip-uboot/configs/netspace_mini_v2_defconfig
/rk3399_rockchip-uboot/configs/netspace_v2_defconfig
/rk3399_rockchip-uboot/configs/nokia_rx51_defconfig
/rk3399_rockchip-uboot/configs/omap3_beagle_defconfig
/rk3399_rockchip-uboot/configs/omap3_evm_defconfig
/rk3399_rockchip-uboot/configs/omap3_ha_defconfig
/rk3399_rockchip-uboot/configs/omap3_overo_defconfig
/rk3399_rockchip-uboot/configs/omap3_pandora_defconfig
/rk3399_rockchip-uboot/configs/omap3_zoom1_defconfig
/rk3399_rockchip-uboot/configs/omap4_panda_defconfig
/rk3399_rockchip-uboot/configs/omap4_sdp4430_defconfig
/rk3399_rockchip-uboot/configs/omap5_uevm_defconfig
/rk3399_rockchip-uboot/configs/omapl138_lcdk_defconfig
/rk3399_rockchip-uboot/configs/pcm051_rev1_defconfig
/rk3399_rockchip-uboot/configs/pcm051_rev3_defconfig
/rk3399_rockchip-uboot/configs/pengwyn_defconfig
/rk3399_rockchip-uboot/configs/pepper_defconfig
/rk3399_rockchip-uboot/configs/pm9261_defconfig
/rk3399_rockchip-uboot/configs/pm9263_defconfig
/rk3399_rockchip-uboot/configs/porter_defconfig
/rk3399_rockchip-uboot/configs/portl2_defconfig
/rk3399_rockchip-uboot/configs/px30_defconfig
/rk3399_rockchip-uboot/configs/pxm2_defconfig
/rk3399_rockchip-uboot/configs/qemu-x86_64_defconfig
/rk3399_rockchip-uboot/configs/qemu-x86_defconfig
/rk3399_rockchip-uboot/configs/qemu-x86_efi_payload32_defconfig
/rk3399_rockchip-uboot/configs/qemu-x86_efi_payload64_defconfig
/rk3399_rockchip-uboot/configs/rastaban_defconfig
/rk3399_rockchip-uboot/configs/rk3126_defconfig
/rk3399_rockchip-uboot/configs/rk3128x_defconfig
/rk3399_rockchip-uboot/configs/rk3288_defconfig
/rk3399_rockchip-uboot/configs/rk3326-aarch32_defconfig
/rk3399_rockchip-uboot/configs/rk3326_defconfig
/rk3399_rockchip-uboot/configs/rk3328_defconfig
/rk3399_rockchip-uboot/configs/rk3368_defconfig
/rk3399_rockchip-uboot/configs/rk3399_defconfig
/rk3399_rockchip-uboot/configs/rk3399pro_defconfig
/rk3399_rockchip-uboot/configs/rut_defconfig
/rk3399_rockchip-uboot/configs/sama5d27_som1_ek_mmc_defconfig
/rk3399_rockchip-uboot/configs/sama5d2_xplained_mmc_defconfig
/rk3399_rockchip-uboot/configs/sama5d2_xplained_spiflash_defconfig
/rk3399_rockchip-uboot/configs/sama5d36ek_cmp_mmc_defconfig
/rk3399_rockchip-uboot/configs/sama5d36ek_cmp_nandflash_defconfig
/rk3399_rockchip-uboot/configs/sama5d36ek_cmp_spiflash_defconfig
/rk3399_rockchip-uboot/configs/sama5d3xek_mmc_defconfig
/rk3399_rockchip-uboot/configs/sama5d3xek_nandflash_defconfig
/rk3399_rockchip-uboot/configs/sama5d3xek_spiflash_defconfig
/rk3399_rockchip-uboot/configs/sama5d4_xplained_mmc_defconfig
/rk3399_rockchip-uboot/configs/sama5d4_xplained_nandflash_defconfig
/rk3399_rockchip-uboot/configs/sama5d4_xplained_spiflash_defconfig
/rk3399_rockchip-uboot/configs/sama5d4ek_mmc_defconfig
/rk3399_rockchip-uboot/configs/sama5d4ek_nandflash_defconfig
/rk3399_rockchip-uboot/configs/sama5d4ek_spiflash_defconfig
/rk3399_rockchip-uboot/configs/sh7752evb_defconfig
/rk3399_rockchip-uboot/configs/sh7753evb_defconfig
/rk3399_rockchip-uboot/configs/sh7757lcr_defconfig
/rk3399_rockchip-uboot/configs/silk_defconfig
/rk3399_rockchip-uboot/configs/socfpga_arria5_defconfig
/rk3399_rockchip-uboot/configs/socfpga_cyclone5_defconfig
/rk3399_rockchip-uboot/configs/socfpga_de0_nano_soc_defconfig
/rk3399_rockchip-uboot/configs/socfpga_de10_nano_defconfig
/rk3399_rockchip-uboot/configs/socfpga_de1_soc_defconfig
/rk3399_rockchip-uboot/configs/socfpga_is1_defconfig
/rk3399_rockchip-uboot/configs/socfpga_mcvevk_defconfig
/rk3399_rockchip-uboot/configs/socfpga_sockit_defconfig
/rk3399_rockchip-uboot/configs/socfpga_socrates_defconfig
/rk3399_rockchip-uboot/configs/socfpga_sr1500_defconfig
/rk3399_rockchip-uboot/configs/socfpga_vining_fpga_defconfig
/rk3399_rockchip-uboot/configs/som-db5800-som-6867_defconfig
/rk3399_rockchip-uboot/configs/stmark2_defconfig
/rk3399_rockchip-uboot/configs/stout_defconfig
/rk3399_rockchip-uboot/configs/tao3530_defconfig
/rk3399_rockchip-uboot/configs/theadorable-x86-conga-qa3-e3845-pcie-x4_defconfig
/rk3399_rockchip-uboot/configs/theadorable-x86-conga-qa3-e3845_defconfig
/rk3399_rockchip-uboot/configs/theadorable-x86-dfi-bt700_defconfig
/rk3399_rockchip-uboot/configs/theadorable_debug_defconfig
/rk3399_rockchip-uboot/configs/thuban_defconfig
/rk3399_rockchip-uboot/configs/ti816x_evm_defconfig
/rk3399_rockchip-uboot/configs/tplink_wdr4300_defconfig
/rk3399_rockchip-uboot/configs/turris_omnia_defconfig
/rk3399_rockchip-uboot/configs/usb_a9263_dataflash_defconfig
/rk3399_rockchip-uboot/configs/work_92105_defconfig
/rk3399_rockchip-uboot/disk/Makefile
/rk3399_rockchip-uboot/drivers/crypto/crypto-uclass.c
/rk3399_rockchip-uboot/drivers/crypto/rockchip/crypto_v2.c
/rk3399_rockchip-uboot/drivers/input/key-uclass.c
/rk3399_rockchip-uboot/drivers/input/rk8xx_pwrkey.c
/rk3399_rockchip-uboot/drivers/irq/Makefile
/rk3399_rockchip-uboot/drivers/irq/irq-generic.c
/rk3399_rockchip-uboot/drivers/irq/irq-gic.c
/rk3399_rockchip-uboot/drivers/irq/irq-gpio-switch.c
/rk3399_rockchip-uboot/drivers/irq/irq-gpio.c
/rk3399_rockchip-uboot/drivers/irq/irq-internal.h
/rk3399_rockchip-uboot/drivers/irq/virq.c
/rk3399_rockchip-uboot/drivers/mmc/mmc-uclass.c
/rk3399_rockchip-uboot/drivers/mtd/Makefile
spi/core.c
/rk3399_rockchip-uboot/drivers/net/Kconfig
/rk3399_rockchip-uboot/drivers/net/e1000_spi.c
/rk3399_rockchip-uboot/drivers/net/mpc8xx_fec.c
/rk3399_rockchip-uboot/drivers/power/charge_animation.c
/rk3399_rockchip-uboot/drivers/power/fuel_gauge/fg_rk817.c
/rk3399_rockchip-uboot/drivers/power/fuel_gauge/fuel_gauge_uclass.c
/rk3399_rockchip-uboot/drivers/power/io-domain/io-domain-uclass.c
/rk3399_rockchip-uboot/drivers/power/pmic/rk8xx.c
/rk3399_rockchip-uboot/drivers/rkflash/rk_sftl_arm_v7.S
/rk3399_rockchip-uboot/drivers/rkflash/rk_sftl_arm_v8.S
/rk3399_rockchip-uboot/drivers/rkflash/sfc_nand.c
/rk3399_rockchip-uboot/drivers/rkflash/sfc_nand.h
/rk3399_rockchip-uboot/drivers/serial/Kconfig
/rk3399_rockchip-uboot/drivers/serial/serial-uclass.c
/rk3399_rockchip-uboot/drivers/serial/serial_mpc8xx.c
/rk3399_rockchip-uboot/drivers/spi/Kconfig
/rk3399_rockchip-uboot/drivers/spi/Makefile
/rk3399_rockchip-uboot/drivers/spi/atcspi200_spi.c
/rk3399_rockchip-uboot/drivers/spi/atmel_spi.c
/rk3399_rockchip-uboot/drivers/spi/bcm63xx_hsspi.c
/rk3399_rockchip-uboot/drivers/spi/bcm63xx_spi.c
/rk3399_rockchip-uboot/drivers/spi/cadence_qspi.c
/rk3399_rockchip-uboot/drivers/spi/cadence_qspi.h
/rk3399_rockchip-uboot/drivers/spi/cadence_qspi_apb.c
/rk3399_rockchip-uboot/drivers/spi/cf_spi.c
/rk3399_rockchip-uboot/drivers/spi/davinci_spi.c
/rk3399_rockchip-uboot/drivers/spi/designware_spi.c
/rk3399_rockchip-uboot/drivers/spi/fsl_dspi.c
/rk3399_rockchip-uboot/drivers/spi/fsl_qspi.c
/rk3399_rockchip-uboot/drivers/spi/fsl_qspi.h
/rk3399_rockchip-uboot/drivers/spi/ich.c
/rk3399_rockchip-uboot/drivers/spi/ich.h
/rk3399_rockchip-uboot/drivers/spi/kirkwood_spi.c
/rk3399_rockchip-uboot/drivers/spi/mpc8xx_spi.c
/rk3399_rockchip-uboot/drivers/spi/mxc_spi.c
/rk3399_rockchip-uboot/drivers/spi/omap3_spi.c
/rk3399_rockchip-uboot/drivers/spi/renesas_rpc_spi.c
/rk3399_rockchip-uboot/drivers/spi/rk_spi.c
/rk3399_rockchip-uboot/drivers/spi/rockchip_sfc.c
/rk3399_rockchip-uboot/drivers/spi/sh_qspi.c
/rk3399_rockchip-uboot/drivers/spi/spi-uclass.c
/rk3399_rockchip-uboot/drivers/spi/spi.c
/rk3399_rockchip-uboot/drivers/video/drm/dw_hdmi.c
/rk3399_rockchip-uboot/drivers/video/drm/dw_mipi_dsi.c
/rk3399_rockchip-uboot/drivers/video/drm/rockchip_display.c
/rk3399_rockchip-uboot/drivers/video/drm/rockchip_dw_hdmi.c
/rk3399_rockchip-uboot/drivers/video/drm/rockchip_panel.c
/rk3399_rockchip-uboot/drivers/video/drm/rockchip_vop.c
/rk3399_rockchip-uboot/include/asm-generic/u-boot.h
/rk3399_rockchip-uboot/include/bidram.h
/rk3399_rockchip-uboot/include/boot_rkimg.h
/rk3399_rockchip-uboot/include/common.h
/rk3399_rockchip-uboot/include/configs/M52277EVB.h
/rk3399_rockchip-uboot/include/configs/M54418TWR.h
/rk3399_rockchip-uboot/include/configs/M54451EVB.h
/rk3399_rockchip-uboot/include/configs/M54455EVB.h
/rk3399_rockchip-uboot/include/configs/MPC8349EMDS.h
/rk3399_rockchip-uboot/include/configs/alt.h
/rk3399_rockchip-uboot/include/configs/blanche.h
/rk3399_rockchip-uboot/include/configs/brppt1.h
/rk3399_rockchip-uboot/include/configs/da850evm.h
/rk3399_rockchip-uboot/include/configs/devkit3250.h
/rk3399_rockchip-uboot/include/configs/devkit8000.h
/rk3399_rockchip-uboot/include/configs/dreamplug.h
/rk3399_rockchip-uboot/include/configs/ds109.h
/rk3399_rockchip-uboot/include/configs/ea20.h
/rk3399_rockchip-uboot/include/configs/gose.h
/rk3399_rockchip-uboot/include/configs/ids8313.h
/rk3399_rockchip-uboot/include/configs/k2g_evm.h
/rk3399_rockchip-uboot/include/configs/koelsch.h
/rk3399_rockchip-uboot/include/configs/lager.h
/rk3399_rockchip-uboot/include/configs/legoev3.h
/rk3399_rockchip-uboot/include/configs/microblaze-generic.h
/rk3399_rockchip-uboot/include/configs/mvebu_armada-8k.h
/rk3399_rockchip-uboot/include/configs/mxs.h
/rk3399_rockchip-uboot/include/configs/omapl138_lcdk.h
/rk3399_rockchip-uboot/include/configs/porter.h
/rk3399_rockchip-uboot/include/configs/rk1808_common.h
/rk3399_rockchip-uboot/include/configs/rk3036_common.h
/rk3399_rockchip-uboot/include/configs/rk3066_common.h
/rk3399_rockchip-uboot/include/configs/rk3128_common.h
/rk3399_rockchip-uboot/include/configs/rk3188_common.h
/rk3399_rockchip-uboot/include/configs/rk3288_common.h
/rk3399_rockchip-uboot/include/configs/rk3308_common.h
/rk3399_rockchip-uboot/include/configs/rk3328_common.h
/rk3399_rockchip-uboot/include/configs/rockchip-common.h
/rk3399_rockchip-uboot/include/configs/rut.h
/rk3399_rockchip-uboot/include/configs/sh7752evb.h
/rk3399_rockchip-uboot/include/configs/sh7753evb.h
/rk3399_rockchip-uboot/include/configs/sh7757lcr.h
/rk3399_rockchip-uboot/include/configs/silk.h
/rk3399_rockchip-uboot/include/configs/socfpga_common.h
/rk3399_rockchip-uboot/include/configs/stmark2.h
/rk3399_rockchip-uboot/include/configs/stout.h
/rk3399_rockchip-uboot/include/configs/stv0991.h
/rk3399_rockchip-uboot/include/configs/taurus.h
/rk3399_rockchip-uboot/include/configs/ti_armv7_common.h
/rk3399_rockchip-uboot/include/configs/ti_armv7_keystone2.h
/rk3399_rockchip-uboot/include/configs/work_92105.h
/rk3399_rockchip-uboot/include/configs/x86-common.h
/rk3399_rockchip-uboot/include/crypto.h
/rk3399_rockchip-uboot/include/edid.h
/rk3399_rockchip-uboot/include/io-domain.h
/rk3399_rockchip-uboot/include/irq-generic.h
/rk3399_rockchip-uboot/include/key.h
/rk3399_rockchip-uboot/include/linux/dw_hdmi.h
/rk3399_rockchip-uboot/include/linux/hdmi.h
/rk3399_rockchip-uboot/include/linux/log2.h
/rk3399_rockchip-uboot/include/linux/mtd/nand.h
/rk3399_rockchip-uboot/include/memblk.h
/rk3399_rockchip-uboot/include/mpc8xx.h
/rk3399_rockchip-uboot/include/part.h
/rk3399_rockchip-uboot/include/power/fuel_gauge.h
/rk3399_rockchip-uboot/include/power/rk8xx_pmic.h
/rk3399_rockchip-uboot/include/ppc_asm.tmpl
/rk3399_rockchip-uboot/include/spi.h
/rk3399_rockchip-uboot/include/spl.h
/rk3399_rockchip-uboot/include/spl_ab.h
/rk3399_rockchip-uboot/include/sysmem.h
/rk3399_rockchip-uboot/include/u-boot/sha512.h
/rk3399_rockchip-uboot/include/video_rockchip.h
/rk3399_rockchip-uboot/include/watchdog.h
/rk3399_rockchip-uboot/lib/Kconfig
/rk3399_rockchip-uboot/lib/Makefile
/rk3399_rockchip-uboot/lib/avb/rk_avb_user/rk_avb_ops_user.c
/rk3399_rockchip-uboot/lib/bidram.c
/rk3399_rockchip-uboot/lib/optee_clientApi/OpteeClientInterface.c
/rk3399_rockchip-uboot/lib/sha512.c
/rk3399_rockchip-uboot/lib/sysmem.c
/rk3399_rockchip-uboot/make.sh
/rk3399_rockchip-uboot/scripts/config_whitelist.txt
/rk3399_rockchip-uboot/test/Kconfig
/rk3399_rockchip-uboot/test/rockchip/Makefile
/rk3399_rockchip-uboot/test/rockchip/test-boot.c
/rk3399_rockchip-uboot/test/rockchip/test-display.c
/rk3399_rockchip-uboot/test/rockchip/test-download.c
/rk3399_rockchip-uboot/test/rockchip/test-misc.c
/rk3399_rockchip-uboot/test/rockchip/test-net.c
/rk3399_rockchip-uboot/test/rockchip/test-power.c
/rk3399_rockchip-uboot/test/rockchip/test-rockchip.c
/rk3399_rockchip-uboot/test/rockchip/test-rockchip.h
/rk3399_rockchip-uboot/test/rockchip/test-storage.c
57e25cf709-Jul-2019 Yifeng Zhao <zyf@rock-chips.com>

rockchip: drivers: mtd: nand: move driver to raw/ subdirectory

Change-Id: Ic35e85a69a0599fb0f6dc47e38cfc40601f6e838
Signed-off-by: Yifeng Zhao <zyf@rock-chips.com>

0d1b216529-Apr-2019 Bartosz Golaszewski <bgolaszewski@baylibre.com>

UPSTREAM: nand: davinci: remove dead code for dm644x

The support for DaVinci DM* SoCs has been dropped. The code that used
to be relevant to dm644x is no longer needed. Remove it.

Change-Id: I202b8

UPSTREAM: nand: davinci: remove dead code for dm644x

The support for DaVinci DM* SoCs has been dropped. The code that used
to be relevant to dm644x is no longer needed. Remove it.

Change-Id: I202b85f5f963d82dea73f0b7b88430134f00ba88
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
Signed-off-by: Jon Lin <jon.lin@rock-chips.com>
(cherry picked from commit a7fc3d7c687e4b7b61784ee7a13fd9e054a18e17)

show more ...

0cc120e317-Apr-2019 Gregory CLEMENT <gregory.clement@bootlin.com>

UPSTREAM: mtd: nand: raw: Fix CONFIG_SYS_NAND_DRIVER_ECC_LAYOUT behavior

The purpose of "mtd: nand: raw: allow to disable unneeded ECC layouts"
was to allow disabling the default ECC layouts if a dr

UPSTREAM: mtd: nand: raw: Fix CONFIG_SYS_NAND_DRIVER_ECC_LAYOUT behavior

The purpose of "mtd: nand: raw: allow to disable unneeded ECC layouts"
was to allow disabling the default ECC layouts if a driver is known to
provide its own ECC layout. However, this commit did the opposite and
disabled the default layout when it was _not_ selected.

It breaks all the NAND drivers not providing their own ECC layout this
patch fix this situation.

It was tested with the lpc32xx_nand_slc driver.

Fixes: a38c3af868 ("mtd: nand: raw: allow to disable unneeded ECC layouts")
Reviewed-by: Miquel Raynal <miquel.raynal@bootlin.com>
Change-Id: I5bb978707782b690533152aaf71f34e10387fc6d
Signed-off-by: Gregory CLEMENT <gregory.clement@bootlin.com>
Tested-by: Eugen Hristev <eugen.hristev@microchip.com>
Signed-off-by: Jon Lin <jon.lin@rock-chips.com>
(cherry picked from commit 5f626e78491c95dbf3e5036cc0c67aea8b1746fd)

show more ...

8eea0cf115-Mar-2019 Philippe Reynes <philippe.reynes@softathome.com>

UPSTREAM: drivers: nand: brcmnand: add an option to read the write-protect from device tree

The option write-protect may only change on the kernel command line,
we add a property in the device tree

UPSTREAM: drivers: nand: brcmnand: add an option to read the write-protect from device tree

The option write-protect may only change on the kernel command line,
we add a property in the device tree to be more flexible.

Change-Id: I9b09732a963f89571b723b66c62978aacf274a98
Signed-off-by: Philippe Reynes <philippe.reynes@softathome.com>
Signed-off-by: Jon Lin <jon.lin@rock-chips.com>
(cherry picked from commit f917438772c7c7da7f30e9209d9f100edac0255e)

show more ...

12345678910>>...38