History log of /rk3399_rockchip-uboot/include/dm/ (Results 226 – 250 of 310)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
a7b8250220-Apr-2015 Przemyslaw Marczak <p.marczak@samsung.com>

dm: core: precise comments for get/find device by name

The functions:
- uclass_find_device_by_name()
- uclass_get_device_by_name()
searches the required device for the exactly given name.
This patch

dm: core: precise comments for get/find device by name

The functions:
- uclass_find_device_by_name()
- uclass_get_device_by_name()
searches the required device for the exactly given name.
This patch, presice this fact for both function's comments.

Signed-off-by: Przemyslaw Marczak <p.marczak@samsung.com>
Cc: Simon Glass <sjg@chromium.org>
Acked-by: Simon Glass <sjg@chromium.org>

show more ...

794d521920-Apr-2015 Przemyslaw Marczak <p.marczak@samsung.com>

dm: core: remove type 'static' of function uclass_get_device_tail()

Uclass API provides a few functions for get/find the device.
To provide a complete function set of uclass-internal functions,
for

dm: core: remove type 'static' of function uclass_get_device_tail()

Uclass API provides a few functions for get/find the device.
To provide a complete function set of uclass-internal functions,
for use by the drivers, the function uclass_get_device_tail()
should be non-static.

Signed-off-by: Przemyslaw Marczak <p.marczak@samsung.com>
Cc: Simon Glass <sjg@chromium.org>
Acked-by: Simon Glass <sjg@chromium.org>

show more ...

f9c370dc15-Apr-2015 Przemyslaw Marczak <p.marczak@samsung.com>

dm: core: device: add function: dev_get_uclass_name()

This commit extends the driver model device's API by function:
- dev_get_uclass_name()

And this function returns the device's uclass driver nam

dm: core: device: add function: dev_get_uclass_name()

This commit extends the driver model device's API by function:
- dev_get_uclass_name()

And this function returns the device's uclass driver name if:
- given dev pointer, is non_NULL
otherwise, the NULL pointer is returned.

Signed-off-by: Przemyslaw Marczak <p.marczak@samsung.com>
Cc: Simon Glass <sjg@chromium.org>
Acked-by: Simon Glass <sjg@chromium.org>

show more ...

cc73d37b15-Apr-2015 Przemyslaw Marczak <p.marczak@samsung.com>

dm: core: device: add function: dev_get_driver_ops()

This commit extends the driver model device's API by function:
- dev_get_driver_ops()

And this function returns the device's driver's operations

dm: core: device: add function: dev_get_driver_ops()

This commit extends the driver model device's API by function:
- dev_get_driver_ops()

And this function returns the device's driver's operations if given:
- dev pointer, is non-NULL
- dev->driver->ops pointer, is non-NULL
in other case the, the NULL pointer is returned.

Signed-off-by: Przemyslaw Marczak <p.marczak@samsung.com>
Cc: Simon Glass <sjg@chromium.org>
Acked-by: Simon Glass <sjg@chromium.org>

show more ...

b7af1a2d15-Apr-2015 Przemyslaw Marczak <p.marczak@samsung.com>

dm: core: uclass: add function: uclass_get_device_by_name()

This commit extends the driver model uclass's API by function:
- uclass_get_device_by_name()

And this function returns the device if:
- u

dm: core: uclass: add function: uclass_get_device_by_name()

This commit extends the driver model uclass's API by function:
- uclass_get_device_by_name()

And this function returns the device if:
- uclass with given ID, exists,
- device with exactly given name(dev->name), exists,
- device probe, doesn't return an error.

The returned device is activated and ready to use.

Note:
This function returns the first device, which name is equal
to the given one. This means, that using this function you must
assume, that the device name is unique in the given uclass's ID
device list.

Signed-off-by: Przemyslaw Marczak <p.marczak@samsung.com>
Cc: Simon Glass <sjg@chromium.org>
Acked-by: Simon Glass <sjg@chromium.org>

show more ...

e0735a4c15-Apr-2015 Przemyslaw Marczak <p.marczak@samsung.com>

dm: core: uclass: add function: uclass_find_device_by_name()

This commit extends the driver model uclass's API by function:
- uclass_find_device_by_name()

And this function returns the device if:
-

dm: core: uclass: add function: uclass_find_device_by_name()

This commit extends the driver model uclass's API by function:
- uclass_find_device_by_name()

And this function returns the device if:
- uclass with given ID, exists,
- device with exactly given name(dev->name), exists.

The returned device is not activated - need to be probed before use.

Note:
This function returns the first device, which name is equal
to the given one. This means, that using this function you must
assume, that the device name is unique in the given uclass's ID
device list.

uclass-internal.h: cleanup - move the uclass_find_device_by_seq()
declaration and description, near the other uclass_find*() functions.

Signed-off-by: Przemyslaw Marczak <p.marczak@samsung.com>
Cc: Simon Glass <sjg@chromium.org>
Acked-by: Simon Glass <sjg@chromium.org>

show more ...

754e71e815-Apr-2015 Przemyslaw Marczak <p.marczak@samsung.com>

dm: test: Add tests for device's uclass platform data

This test introduces new test structure type:dm_test_perdev_uc_pdata.
The structure consists of three int values only. For the test purposes,
th

dm: test: Add tests for device's uclass platform data

This test introduces new test structure type:dm_test_perdev_uc_pdata.
The structure consists of three int values only. For the test purposes,
three pattern values are defined by enum, starting with TEST_UC_PDATA_INTVAL1.

This commit adds two test cases for uclass platform data:
- Test: dm_test_autobind_uclass_pdata_alloc - this tests if:
* uclass driver sets: .per_device_platdata_auto_alloc_size field
* the devices's: dev->uclass_platdata is non-NULL

- Test: dm_test_autobind_uclass_pdata_valid - this tests:
* if the devices's: dev->uclass_platdata is non-NULL
* the structure of type 'dm_test_perdev_uc_pdata' allocated at address
pointed by dev->uclass_platdata. Each structure field, should be equal
to proper pattern data, starting from .intval1 == TEST_UC_PDATA_INTVAL1.

Signed-off-by: Przemyslaw Marczak <p.marczak@samsung.com>
Cc: Simon Glass <sjg@chromium.org>
Acked-by: Simon Glass <sjg@chromium.org>

show more ...

5eaed88015-Apr-2015 Przemyslaw Marczak <p.marczak@samsung.com>

dm: core: Extend struct udevice by '.uclass_platdata' field.

This commit adds 'uclass_platdata' field to 'struct udevice', which
can be automatically allocated at bind. The allocation size is define

dm: core: Extend struct udevice by '.uclass_platdata' field.

This commit adds 'uclass_platdata' field to 'struct udevice', which
can be automatically allocated at bind. The allocation size is defined
in 'struct uclass_driver' as 'per_device_platdata_auto_alloc_size'.

New device's flag is added: DM_FLAG_ALLOC_UCLASS_PDATA, which is used
for memory freeing at device unbind method.

As for other udevice's fields, a complementary function is added:
- dev_get_uclass_platdata()

Signed-off-by: Przemyslaw Marczak <p.marczak@samsung.com>
Cc: Simon Glass <sjg@chromium.org>
Acked-by: Simon Glass <sjg@chromium.org>

show more ...

c1d6f91915-Apr-2015 Przemyslaw Marczak <p.marczak@samsung.com>

dm: core: add internal functions for getting the device without probe

This commit extends the uclass-internal functions by:
- uclass_find_first_device()
- uclass_find_next_device()
For both function

dm: core: add internal functions for getting the device without probe

This commit extends the uclass-internal functions by:
- uclass_find_first_device()
- uclass_find_next_device()
For both functions, the returned device is not probed.

After some cleanup, the above functions are called by:
- uclass_first_device()
- uclass_next_device()
for which, the returned device is probed.

Signed-off-by: Przemyslaw Marczak <p.marczak@samsung.com>
Cc: Simon Glass <sjg@chromium.org>
Acked-by: Simon Glass <sjg@chromium.org>

show more ...


/rk3399_rockchip-uboot/MAINTAINERS
/rk3399_rockchip-uboot/Makefile
/rk3399_rockchip-uboot/README
/rk3399_rockchip-uboot/arch/Kconfig
/rk3399_rockchip-uboot/arch/arm/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/spear/cpu.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/exynos/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap-common/boot-common.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap-common/sata.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap3/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/rmobile/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/socfpga/misc.c
/rk3399_rockchip-uboot/arch/arm/include/asm/imx-common/video.h
/rk3399_rockchip-uboot/arch/arm/mach-at91/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-bcm283x/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-davinci/misc.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/Kconfig
/rk3399_rockchip-uboot/arch/mips/mach-au1x00/au1x00_eth.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8260/ether_fcc.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8260/ether_scc.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc83xx/Kconfig
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/ether_fcc.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/start.S
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xx/fec.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xx/scc.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/ppc4xx/Kconfig
/rk3399_rockchip-uboot/arch/powerpc/include/asm/fsl_errata.h
/rk3399_rockchip-uboot/arch/sandbox/Kconfig
/rk3399_rockchip-uboot/arch/sandbox/cpu/cpu.c
/rk3399_rockchip-uboot/arch/sandbox/lib/Makefile
/rk3399_rockchip-uboot/arch/sandbox/lib/bootm.c
/rk3399_rockchip-uboot/arch/x86/Kconfig
/rk3399_rockchip-uboot/arch/x86/cpu/cpu.c
/rk3399_rockchip-uboot/board/BuR/common/common.c
/rk3399_rockchip-uboot/board/ait/cam_enc_4xx/cam_enc_4xx.c
/rk3399_rockchip-uboot/board/alphaproject/ap_sh4a_4a/ap_sh4a_4a.c
/rk3399_rockchip-uboot/board/amcc/canyonlands/Kconfig
/rk3399_rockchip-uboot/board/bct-brettl2/bct-brettl2.c
/rk3399_rockchip-uboot/board/bf518f-ezbrd/bf518f-ezbrd.c
/rk3399_rockchip-uboot/board/bf526-ezbrd/bf526-ezbrd.c
/rk3399_rockchip-uboot/board/bf527-ezkit/bf527-ezkit.c
/rk3399_rockchip-uboot/board/bf537-minotaur/bf537-minotaur.c
/rk3399_rockchip-uboot/board/bf537-pnav/bf537-pnav.c
/rk3399_rockchip-uboot/board/bf537-srv1/bf537-srv1.c
/rk3399_rockchip-uboot/board/bf537-stamp/bf537-stamp.c
/rk3399_rockchip-uboot/board/bf609-ezkit/bf609-ezkit.c
/rk3399_rockchip-uboot/board/birdland/bav335x/board.c
/rk3399_rockchip-uboot/board/buffalo/lsxl/lsxl.c
/rk3399_rockchip-uboot/board/cm-bf527/cm-bf527.c
/rk3399_rockchip-uboot/board/cm-bf537e/cm-bf537e.c
/rk3399_rockchip-uboot/board/cm-bf537u/cm-bf537u.c
/rk3399_rockchip-uboot/board/compulab/cm_fx6/cm_fx6.c
/rk3399_rockchip-uboot/board/compulab/cm_t335/Kconfig
/rk3399_rockchip-uboot/board/compulab/cm_t335/cm_t335.c
/rk3399_rockchip-uboot/board/compulab/cm_t35/cm_t35.c
/rk3399_rockchip-uboot/board/compulab/cm_t3517/cm_t3517.c
/rk3399_rockchip-uboot/board/compulab/cm_t54/cm_t54.c
/rk3399_rockchip-uboot/board/davinci/da8xxevm/da850evm.c
/rk3399_rockchip-uboot/board/dnp5370/dnp5370.c
/rk3399_rockchip-uboot/board/freescale/t208xrdb/ddr.h
/rk3399_rockchip-uboot/board/freescale/t208xrdb/t208xrdb.c
/rk3399_rockchip-uboot/board/gumstix/pepper/Kconfig
/rk3399_rockchip-uboot/board/gumstix/pepper/board.c
/rk3399_rockchip-uboot/board/highbank/highbank.c
/rk3399_rockchip-uboot/board/ifm/ac14xx/ac14xx.c
/rk3399_rockchip-uboot/board/ip04/ip04.c
/rk3399_rockchip-uboot/board/isee/igep0033/Kconfig
/rk3399_rockchip-uboot/board/isee/igep0033/board.c
/rk3399_rockchip-uboot/board/phytec/pcm051/Kconfig
/rk3399_rockchip-uboot/board/phytec/pcm051/board.c
/rk3399_rockchip-uboot/board/renesas/r0p7734/r0p7734.c
/rk3399_rockchip-uboot/board/samsung/goni/Kconfig
/rk3399_rockchip-uboot/board/samsung/smdkc100/Kconfig
/rk3399_rockchip-uboot/board/siemens/common/factoryset.c
/rk3399_rockchip-uboot/board/siemens/pxm2/board.c
/rk3399_rockchip-uboot/board/silica/pengwyn/Kconfig
/rk3399_rockchip-uboot/board/silica/pengwyn/board.c
/rk3399_rockchip-uboot/board/spear/spear300/spear300.c
/rk3399_rockchip-uboot/board/spear/spear310/spear310.c
/rk3399_rockchip-uboot/board/spear/spear320/spear320.c
/rk3399_rockchip-uboot/board/spear/spear600/spear600.c
/rk3399_rockchip-uboot/board/st/stv0991/stv0991.c
/rk3399_rockchip-uboot/board/sunxi/ahci.c
/rk3399_rockchip-uboot/board/sunxi/gmac.c
/rk3399_rockchip-uboot/board/tcm-bf518/tcm-bf518.c
/rk3399_rockchip-uboot/board/tcm-bf537/tcm-bf537.c
/rk3399_rockchip-uboot/board/ti/am335x/Kconfig
/rk3399_rockchip-uboot/board/ti/am335x/board.c
/rk3399_rockchip-uboot/board/ti/am43xx/board.c
/rk3399_rockchip-uboot/board/ti/beagle_x15/board.c
/rk3399_rockchip-uboot/board/ti/dra7xx/evm.c
/rk3399_rockchip-uboot/board/ti/ti814x/evm.c
/rk3399_rockchip-uboot/common/Kconfig
/rk3399_rockchip-uboot/common/Makefile
/rk3399_rockchip-uboot/common/cmd_bdinfo.c
/rk3399_rockchip-uboot/common/cmd_bootstage.c
/rk3399_rockchip-uboot/common/cmd_elf.c
/rk3399_rockchip-uboot/common/cmd_host.c
/rk3399_rockchip-uboot/common/cmd_mii.c
/rk3399_rockchip-uboot/common/cmd_net.c
/rk3399_rockchip-uboot/common/cmd_pxe.c
/rk3399_rockchip-uboot/common/lcd.c
/rk3399_rockchip-uboot/common/lcd_console.c
/rk3399_rockchip-uboot/common/lcd_console_rotation.c
/rk3399_rockchip-uboot/common/miiphyutil.c
/rk3399_rockchip-uboot/common/spl/spl_net.c
/rk3399_rockchip-uboot/common/update.c
/rk3399_rockchip-uboot/configs/A20-OLinuXino-Lime2_defconfig
/rk3399_rockchip-uboot/configs/A20-OLinuXino-Lime_defconfig
/rk3399_rockchip-uboot/configs/A20-OLinuXino_MICRO_defconfig
/rk3399_rockchip-uboot/configs/Bananapi_defconfig
/rk3399_rockchip-uboot/configs/Bananapro_defconfig
/rk3399_rockchip-uboot/configs/CSQ_CS908_defconfig
/rk3399_rockchip-uboot/configs/Colombus_defconfig
/rk3399_rockchip-uboot/configs/Cubieboard2_defconfig
/rk3399_rockchip-uboot/configs/Cubietruck_defconfig
/rk3399_rockchip-uboot/configs/Hummingbird_A31_defconfig
/rk3399_rockchip-uboot/configs/Linksprite_pcDuino3_Nano_defconfig
/rk3399_rockchip-uboot/configs/Linksprite_pcDuino3_defconfig
/rk3399_rockchip-uboot/configs/Mele_I7_defconfig
/rk3399_rockchip-uboot/configs/Mele_M3_defconfig
/rk3399_rockchip-uboot/configs/Mele_M5_defconfig
/rk3399_rockchip-uboot/configs/Mele_M9_defconfig
/rk3399_rockchip-uboot/configs/Orangepi_defconfig
/rk3399_rockchip-uboot/configs/Orangepi_mini_defconfig
/rk3399_rockchip-uboot/configs/Wits_Pro_A20_DKT_defconfig
/rk3399_rockchip-uboot/configs/alt_defconfig
/rk3399_rockchip-uboot/configs/am335x_boneblack_vboot_defconfig
/rk3399_rockchip-uboot/configs/am3517_crane_defconfig
/rk3399_rockchip-uboot/configs/am3517_evm_defconfig
/rk3399_rockchip-uboot/configs/arndale_defconfig
/rk3399_rockchip-uboot/configs/axs101_defconfig
/rk3399_rockchip-uboot/configs/axs103_defconfig
/rk3399_rockchip-uboot/configs/bf609-ezkit_defconfig
/rk3399_rockchip-uboot/configs/birdland_bav335a_defconfig
/rk3399_rockchip-uboot/configs/birdland_bav335b_defconfig
/rk3399_rockchip-uboot/configs/cm_fx6_defconfig
/rk3399_rockchip-uboot/configs/cm_t3517_defconfig
/rk3399_rockchip-uboot/configs/cm_t35_defconfig
/rk3399_rockchip-uboot/configs/devkit8000_defconfig
/rk3399_rockchip-uboot/configs/dig297_defconfig
/rk3399_rockchip-uboot/configs/eco5pk_defconfig
/rk3399_rockchip-uboot/configs/galileo_defconfig
/rk3399_rockchip-uboot/configs/gose_defconfig
/rk3399_rockchip-uboot/configs/i12-tvbox_defconfig
/rk3399_rockchip-uboot/configs/ids8313_defconfig
/rk3399_rockchip-uboot/configs/koelsch_defconfig
/rk3399_rockchip-uboot/configs/lager_defconfig
/rk3399_rockchip-uboot/configs/mcx_defconfig
/rk3399_rockchip-uboot/configs/mixtile_loftq_defconfig
/rk3399_rockchip-uboot/configs/mt_ventoux_defconfig
/rk3399_rockchip-uboot/configs/mx6dlsabreauto_defconfig
/rk3399_rockchip-uboot/configs/mx6dlsabresd_defconfig
/rk3399_rockchip-uboot/configs/mx6qsabreauto_defconfig
/rk3399_rockchip-uboot/configs/mx6qsabresd_defconfig
/rk3399_rockchip-uboot/configs/mx6sabresd_spl_defconfig
/rk3399_rockchip-uboot/configs/mx6sxsabresd_defconfig
/rk3399_rockchip-uboot/configs/mx6sxsabresd_spl_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_evm_quick_mmc_defconfig
/rk3399_rockchip-uboot/configs/omap3_evm_quick_nand_defconfig
/rk3399_rockchip-uboot/configs/omap3_ha_defconfig
/rk3399_rockchip-uboot/configs/omap3_logic_defconfig
/rk3399_rockchip-uboot/configs/omap3_mvblx_defconfig
/rk3399_rockchip-uboot/configs/omap3_pandora_defconfig
/rk3399_rockchip-uboot/configs/omap3_sdp3430_defconfig
/rk3399_rockchip-uboot/configs/ph1_ld4_defconfig
/rk3399_rockchip-uboot/configs/ph1_pro4_defconfig
/rk3399_rockchip-uboot/configs/ph1_sld8_defconfig
/rk3399_rockchip-uboot/configs/porter_defconfig
/rk3399_rockchip-uboot/configs/sandbox_defconfig
/rk3399_rockchip-uboot/configs/silk_defconfig
/rk3399_rockchip-uboot/configs/smdk5250_defconfig
/rk3399_rockchip-uboot/configs/snapper9260_defconfig
/rk3399_rockchip-uboot/configs/snapper9g20_defconfig
/rk3399_rockchip-uboot/configs/snow_defconfig
/rk3399_rockchip-uboot/configs/socfpga_arria5_defconfig
/rk3399_rockchip-uboot/configs/socfpga_cyclone5_defconfig
/rk3399_rockchip-uboot/configs/socfpga_socrates_defconfig
/rk3399_rockchip-uboot/configs/spear300_defconfig
/rk3399_rockchip-uboot/configs/spear300_nand_defconfig
/rk3399_rockchip-uboot/configs/spear300_usbtty_defconfig
/rk3399_rockchip-uboot/configs/spear300_usbtty_nand_defconfig
/rk3399_rockchip-uboot/configs/spear310_defconfig
/rk3399_rockchip-uboot/configs/spear310_nand_defconfig
/rk3399_rockchip-uboot/configs/spear310_pnor_defconfig
/rk3399_rockchip-uboot/configs/spear310_usbtty_defconfig
/rk3399_rockchip-uboot/configs/spear310_usbtty_nand_defconfig
/rk3399_rockchip-uboot/configs/spear310_usbtty_pnor_defconfig
/rk3399_rockchip-uboot/configs/spear320_defconfig
/rk3399_rockchip-uboot/configs/spear320_nand_defconfig
/rk3399_rockchip-uboot/configs/spear320_pnor_defconfig
/rk3399_rockchip-uboot/configs/spear320_usbtty_defconfig
/rk3399_rockchip-uboot/configs/spear320_usbtty_nand_defconfig
/rk3399_rockchip-uboot/configs/spear320_usbtty_pnor_defconfig
/rk3399_rockchip-uboot/configs/spear600_defconfig
/rk3399_rockchip-uboot/configs/spear600_nand_defconfig
/rk3399_rockchip-uboot/configs/spear600_usbtty_defconfig
/rk3399_rockchip-uboot/configs/spear600_usbtty_nand_defconfig
/rk3399_rockchip-uboot/configs/stv0991_defconfig
/rk3399_rockchip-uboot/configs/tao3530_defconfig
/rk3399_rockchip-uboot/configs/tb100_defconfig
/rk3399_rockchip-uboot/configs/tricorder_defconfig
/rk3399_rockchip-uboot/configs/tricorder_flash_defconfig
/rk3399_rockchip-uboot/configs/twister_defconfig
/rk3399_rockchip-uboot/configs/x600_defconfig
/rk3399_rockchip-uboot/configs/zynq_microzed_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc70x_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc770_xm010_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc770_xm012_defconfig
/rk3399_rockchip-uboot/configs/zynq_zc770_xm013_defconfig
/rk3399_rockchip-uboot/configs/zynq_zed_defconfig
/rk3399_rockchip-uboot/configs/zynq_zybo_defconfig
/rk3399_rockchip-uboot/doc/README.drivers.eth
/rk3399_rockchip-uboot/doc/README.enetaddr
/rk3399_rockchip-uboot/doc/README.link-local
/rk3399_rockchip-uboot/doc/device-tree-bindings/net/allwinner,sun4i-emac.txt
/rk3399_rockchip-uboot/doc/device-tree-bindings/net/allwinner,sun4i-mdio.txt
/rk3399_rockchip-uboot/doc/device-tree-bindings/net/allwinner,sun7i-a20-gmac.txt
/rk3399_rockchip-uboot/doc/device-tree-bindings/net/ethernet.txt
/rk3399_rockchip-uboot/doc/device-tree-bindings/net/stmmac.txt
/rk3399_rockchip-uboot/doc/driver-model/usb-info.txt
/rk3399_rockchip-uboot/doc/git-mailrc
/rk3399_rockchip-uboot/drivers/block/ahci.c
/rk3399_rockchip-uboot/drivers/block/dwc_ahsata.c
/rk3399_rockchip-uboot/drivers/core/uclass.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/ctrl_regs.c
/rk3399_rockchip-uboot/drivers/gpio/Kconfig
/rk3399_rockchip-uboot/drivers/i2c/Kconfig
/rk3399_rockchip-uboot/drivers/mtd/spi/Kconfig
/rk3399_rockchip-uboot/drivers/net/4xx_enet.c
/rk3399_rockchip-uboot/drivers/net/Kconfig
/rk3399_rockchip-uboot/drivers/net/Makefile
/rk3399_rockchip-uboot/drivers/net/altera_tse.c
/rk3399_rockchip-uboot/drivers/net/armada100_fec.c
/rk3399_rockchip-uboot/drivers/net/at91_emac.c
/rk3399_rockchip-uboot/drivers/net/ax88180.c
/rk3399_rockchip-uboot/drivers/net/bcm-sf2-eth.c
/rk3399_rockchip-uboot/drivers/net/bfin_mac.c
/rk3399_rockchip-uboot/drivers/net/calxedaxgmac.c
/rk3399_rockchip-uboot/drivers/net/cpsw.c
/rk3399_rockchip-uboot/drivers/net/cs8900.c
/rk3399_rockchip-uboot/drivers/net/davinci_emac.c
/rk3399_rockchip-uboot/drivers/net/dc2114x.c
/rk3399_rockchip-uboot/drivers/net/designware.c
/rk3399_rockchip-uboot/drivers/net/designware.h
/rk3399_rockchip-uboot/drivers/net/dm9000x.c
/rk3399_rockchip-uboot/drivers/net/dnet.c
/rk3399_rockchip-uboot/drivers/net/e1000.c
/rk3399_rockchip-uboot/drivers/net/eepro100.c
/rk3399_rockchip-uboot/drivers/net/enc28j60.c
/rk3399_rockchip-uboot/drivers/net/ep93xx_eth.c
/rk3399_rockchip-uboot/drivers/net/ethoc.c
/rk3399_rockchip-uboot/drivers/net/fec_mxc.c
/rk3399_rockchip-uboot/drivers/net/fm/eth.c
/rk3399_rockchip-uboot/drivers/net/fsl_mcdmafec.c
/rk3399_rockchip-uboot/drivers/net/ftgmac100.c
/rk3399_rockchip-uboot/drivers/net/ftmac100.c
/rk3399_rockchip-uboot/drivers/net/ftmac110.c
/rk3399_rockchip-uboot/drivers/net/greth.c
/rk3399_rockchip-uboot/drivers/net/keystone_net.c
/rk3399_rockchip-uboot/drivers/net/ks8851_mll.c
/rk3399_rockchip-uboot/drivers/net/lan91c96.c
/rk3399_rockchip-uboot/drivers/net/lpc32xx_eth.c
/rk3399_rockchip-uboot/drivers/net/macb.c
/rk3399_rockchip-uboot/drivers/net/mcffec.c
/rk3399_rockchip-uboot/drivers/net/mpc512x_fec.c
/rk3399_rockchip-uboot/drivers/net/mpc5xxx_fec.c
/rk3399_rockchip-uboot/drivers/net/mvgbe.c
/rk3399_rockchip-uboot/drivers/net/mvneta.c
/rk3399_rockchip-uboot/drivers/net/natsemi.c
/rk3399_rockchip-uboot/drivers/net/ne2000_base.c
/rk3399_rockchip-uboot/drivers/net/netconsole.c
/rk3399_rockchip-uboot/drivers/net/ns8382x.c
/rk3399_rockchip-uboot/drivers/net/pch_gbe.c
/rk3399_rockchip-uboot/drivers/net/pcnet.c
/rk3399_rockchip-uboot/drivers/net/phy/micrel.c
/rk3399_rockchip-uboot/drivers/net/phy/phy.c
/rk3399_rockchip-uboot/drivers/net/phy/realtek.c
/rk3399_rockchip-uboot/drivers/net/rtl8139.c
/rk3399_rockchip-uboot/drivers/net/rtl8169.c
/rk3399_rockchip-uboot/drivers/net/sandbox-raw.c
/rk3399_rockchip-uboot/drivers/net/sandbox.c
/rk3399_rockchip-uboot/drivers/net/sh_eth.c
/rk3399_rockchip-uboot/drivers/net/smc91111.c
/rk3399_rockchip-uboot/drivers/net/smc911x.c
/rk3399_rockchip-uboot/drivers/net/sunxi_emac.c
/rk3399_rockchip-uboot/drivers/net/tsec.c
/rk3399_rockchip-uboot/drivers/net/tsi108_eth.c
/rk3399_rockchip-uboot/drivers/net/uli526x.c
/rk3399_rockchip-uboot/drivers/net/xilinx_axi_emac.c
/rk3399_rockchip-uboot/drivers/net/xilinx_emaclite.c
/rk3399_rockchip-uboot/drivers/net/xilinx_ll_temac_fifo.c
/rk3399_rockchip-uboot/drivers/net/xilinx_ll_temac_sdma.c
/rk3399_rockchip-uboot/drivers/net/zynq_gem.c
/rk3399_rockchip-uboot/drivers/qe/uec.c
/rk3399_rockchip-uboot/drivers/serial/serial_pl01x.c
/rk3399_rockchip-uboot/drivers/sound/Kconfig
/rk3399_rockchip-uboot/drivers/spi/Kconfig
/rk3399_rockchip-uboot/drivers/tpm/Kconfig
/rk3399_rockchip-uboot/drivers/usb/eth/asix.c
/rk3399_rockchip-uboot/drivers/usb/eth/asix88179.c
/rk3399_rockchip-uboot/drivers/usb/eth/mcs7830.c
/rk3399_rockchip-uboot/drivers/usb/eth/smsc95xx.c
/rk3399_rockchip-uboot/drivers/usb/gadget/ether.c
/rk3399_rockchip-uboot/drivers/video/Makefile
/rk3399_rockchip-uboot/drivers/video/ipu.h
/rk3399_rockchip-uboot/drivers/video/ipu_common.c
/rk3399_rockchip-uboot/drivers/video/lg4573.c
/rk3399_rockchip-uboot/fs/sandbox/sandboxfs.c
/rk3399_rockchip-uboot/include/ahci.h
/rk3399_rockchip-uboot/include/atmel_lcd.h
/rk3399_rockchip-uboot/include/bootstage.h
/rk3399_rockchip-uboot/include/common.h
/rk3399_rockchip-uboot/include/config_distro_bootcmd.h
/rk3399_rockchip-uboot/include/config_distro_defaults.h
/rk3399_rockchip-uboot/include/configs/MPC8641HPCN.h
/rk3399_rockchip-uboot/include/configs/T208xRDB.h
/rk3399_rockchip-uboot/include/configs/T4240RDB.h
/rk3399_rockchip-uboot/include/configs/axs101.h
/rk3399_rockchip-uboot/include/configs/bf609-ezkit.h
/rk3399_rockchip-uboot/include/configs/exynos5250-common.h
/rk3399_rockchip-uboot/include/configs/qemu-ppce500.h
/rk3399_rockchip-uboot/include/configs/sandbox.h
/rk3399_rockchip-uboot/include/configs/socfpga_common.h
/rk3399_rockchip-uboot/include/configs/spear-common.h
/rk3399_rockchip-uboot/include/configs/stv0991.h
/rk3399_rockchip-uboot/include/configs/sunxi-common.h
/rk3399_rockchip-uboot/include/configs/tb100.h
/rk3399_rockchip-uboot/include/configs/x600.h
/rk3399_rockchip-uboot/include/configs/x86-common.h
uclass-internal.h
/rk3399_rockchip-uboot/include/exynos_lcd.h
/rk3399_rockchip-uboot/include/lcd.h
/rk3399_rockchip-uboot/include/lcd_console.h
/rk3399_rockchip-uboot/include/mpc823_lcd.h
/rk3399_rockchip-uboot/include/mpc85xx.h
/rk3399_rockchip-uboot/include/net.h
/rk3399_rockchip-uboot/include/phy.h
/rk3399_rockchip-uboot/include/ppc_asm.tmpl
/rk3399_rockchip-uboot/include/pxa_lcd.h
/rk3399_rockchip-uboot/include/video.h
/rk3399_rockchip-uboot/lib/Kconfig
/rk3399_rockchip-uboot/lib/net_utils.c
/rk3399_rockchip-uboot/net/arp.c
/rk3399_rockchip-uboot/net/arp.h
/rk3399_rockchip-uboot/net/bootp.c
/rk3399_rockchip-uboot/net/bootp.h
/rk3399_rockchip-uboot/net/cdp.c
/rk3399_rockchip-uboot/net/cdp.h
/rk3399_rockchip-uboot/net/dns.c
/rk3399_rockchip-uboot/net/dns.h
/rk3399_rockchip-uboot/net/eth.c
/rk3399_rockchip-uboot/net/link_local.c
/rk3399_rockchip-uboot/net/net.c
/rk3399_rockchip-uboot/net/nfs.c
/rk3399_rockchip-uboot/net/nfs.h
/rk3399_rockchip-uboot/net/ping.c
/rk3399_rockchip-uboot/net/rarp.c
/rk3399_rockchip-uboot/net/rarp.h
/rk3399_rockchip-uboot/net/sntp.c
/rk3399_rockchip-uboot/net/sntp.h
/rk3399_rockchip-uboot/net/tftp.c
/rk3399_rockchip-uboot/net/tftp.h
/rk3399_rockchip-uboot/post/cpu/mpc8xx/ether.c
/rk3399_rockchip-uboot/scripts/Makefile.spl
/rk3399_rockchip-uboot/test/dm/Makefile
/rk3399_rockchip-uboot/test/dm/eth.c
/rk3399_rockchip-uboot/test/dm/test-dm.sh
/rk3399_rockchip-uboot/test/dm/test.dts
/rk3399_rockchip-uboot/test/dm/usb.c
/rk3399_rockchip-uboot/tools/buildman/builder.py
/rk3399_rockchip-uboot/tools/buildman/builderthread.py
/rk3399_rockchip-uboot/tools/buildman/cmdline.py
/rk3399_rockchip-uboot/tools/buildman/control.py
/rk3399_rockchip-uboot/tools/patman/patchstream.py
57f54d5525-Mar-2015 Simon Glass <sjg@chromium.org>

dm: test: Allow 'dm test' to select a particular test to run

As well as running all tests, it is useful to be able to run a selected test.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by:

dm: test: Allow 'dm test' to select a particular test to run

As well as running all tests, it is useful to be able to run a selected test.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Marek Vasut <marex@denx.de>

show more ...

f4f7153625-Mar-2015 Simon Glass <sjg@chromium.org>

dm: usb: sandbox: Add an emulator for USB flash devices

This emulator supports USB enumeration and allows a local file to be provided
as the contents of the emulated flash stick. U-Boot can then use

dm: usb: sandbox: Add an emulator for USB flash devices

This emulator supports USB enumeration and allows a local file to be provided
as the contents of the emulated flash stick. U-Boot can then use the file as
it would a normal device, with all access passing through the usb_stor layer
and the USB stack.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Marek Vasut <marex@denx.de>

show more ...

019808f925-Mar-2015 Simon Glass <sjg@chromium.org>

dm: usb: sandbox: Add a uclass for USB device emulation

With sandbox we want to be able to emulate USB devices so that we can test
the USB stack. Add a uclass to support this. It implements the same

dm: usb: sandbox: Add a uclass for USB device emulation

With sandbox we want to be able to emulate USB devices so that we can test
the USB stack. Add a uclass to support this. It implements the same
operations as a normal USB device driver, but in this case passes them on
to an emulation driver.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Marek Vasut <marex@denx.de>

show more ...

449230f025-Mar-2015 Simon Glass <sjg@chromium.org>

dm: usb: Bind generic USB devices when there is no driver

At present USB devices with no driver model driver cannot be seen in the
device list, and we fail to set them up correctly. This means they

dm: usb: Bind generic USB devices when there is no driver

At present USB devices with no driver model driver cannot be seen in the
device list, and we fail to set them up correctly. This means they cannot
be used.

While having real drivers that support driver model for all USB devices
is the eventual goal, we are not there yet.

As a stop-gap, add a generic USB driver which is bound when we do not have
a real driver. This allows the device to be set up and shown on the bus.
It also allows ad-hoc code (such as usb_ether) to find these devices and
set them up.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Marek Vasut <marex@denx.de>

show more ...

054fe48e25-Mar-2015 Simon Glass <sjg@chromium.org>

dm: usb: Add driver model support for hubs

Adjust the existing hub code to support driver model, and add a USB driver
for hubs.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Marek Vasu

dm: usb: Add driver model support for hubs

Adjust the existing hub code to support driver model, and add a USB driver
for hubs.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Marek Vasut <marex@denx.de>

show more ...

de31213f25-Mar-2015 Simon Glass <sjg@chromium.org>

dm: usb: Add a uclass for USB controllers

Add a uclass that can represent a USB controller. For now we do not create
devices for things attached to the controller. This will be added later.

Signed-

dm: usb: Add a uclass for USB controllers

Add a uclass that can represent a USB controller. For now we do not create
devices for things attached to the controller. This will be added later.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Marek Vasut <marex@denx.de>

show more ...

c578567325-Mar-2015 Simon Glass <sjg@chromium.org>

dm: core: Add device children and sibling functions

Add some utility functions to check for children and for the last sibling in
a device's parent.

Signed-off-by: Simon Glass <sjg@chromium.org>
Rev

dm: core: Add device children and sibling functions

Add some utility functions to check for children and for the last sibling in
a device's parent.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Marek Vasut <marex@denx.de>

show more ...

39de843325-Mar-2015 Simon Glass <sjg@chromium.org>

dm: core: Rename driver data function to dev_get_driver_data()

The existing get_get_of_data() function provides access to both the driver's
compatible string and its driver data. However only the la

dm: core: Rename driver data function to dev_get_driver_data()

The existing get_get_of_data() function provides access to both the driver's
compatible string and its driver data. However only the latter is actually
useful. Update the interface to reflect this and fix up existing users.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Marek Vasut <marex@denx.de>

show more ...

3479253d25-Mar-2015 Simon Glass <sjg@chromium.org>

dm: core: Convert driver_bind() to use const

The driver is not modified by driver model, so update driver_bind() to
recognise that.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Marek

dm: core: Convert driver_bind() to use const

The driver is not modified by driver model, so update driver_bind() to
recognise that.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Marek Vasut <marex@denx.de>

show more ...

2c03c46325-Mar-2015 Simon Glass <sjg@chromium.org>

dm: core: Support allocating driver-private data for DMA

Some driver want to put DMA buffers in their private data. Add a flag
to tell driver model to align driver-private data to a cache boundary s

dm: core: Support allocating driver-private data for DMA

Some driver want to put DMA buffers in their private data. Add a flag
to tell driver model to align driver-private data to a cache boundary so
that DMA will work correctly in this case.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Marek Vasut <marex@denx.de>

show more ...


/rk3399_rockchip-uboot/arch/arm/dts/Makefile
/rk3399_rockchip-uboot/arch/arm/dts/exynos5250-snow.dts
/rk3399_rockchip-uboot/arch/arm/dts/exynos5420-peach-pit.dts
/rk3399_rockchip-uboot/arch/arm/dts/exynos5800-peach-pi.dts
/rk3399_rockchip-uboot/arch/arm/dts/ls1021a-qds.dts
/rk3399_rockchip-uboot/arch/arm/dts/ls1021a-twr.dts
/rk3399_rockchip-uboot/arch/arm/dts/ls1021a.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/skeleton64.dtsi
/rk3399_rockchip-uboot/arch/sandbox/Kconfig
/rk3399_rockchip-uboot/arch/sandbox/dts/cros-ec-keyboard.dtsi
/rk3399_rockchip-uboot/arch/sandbox/dts/sandbox.dts
/rk3399_rockchip-uboot/arch/x86/cpu/ivybridge/cpu.c
/rk3399_rockchip-uboot/arch/x86/cpu/ivybridge/lpc.c
/rk3399_rockchip-uboot/arch/x86/dts/chromebook_link.dts
/rk3399_rockchip-uboot/board/coreboot/coreboot/coreboot.c
/rk3399_rockchip-uboot/board/google/chromebook_link/link.c
/rk3399_rockchip-uboot/board/samsung/common/board.c
/rk3399_rockchip-uboot/board/samsung/smdk5420/Kconfig
/rk3399_rockchip-uboot/board/sandbox/sandbox.c
/rk3399_rockchip-uboot/common/cros_ec.c
/rk3399_rockchip-uboot/configs/chromebook_link_defconfig
/rk3399_rockchip-uboot/configs/sandbox_defconfig
/rk3399_rockchip-uboot/configs/snow_defconfig
/rk3399_rockchip-uboot/doc/device-tree-bindings/i2c/i2c-gpio.txt
/rk3399_rockchip-uboot/drivers/core/device.c
/rk3399_rockchip-uboot/drivers/gpio/gpio-uclass.c
/rk3399_rockchip-uboot/drivers/i2c/Kconfig
/rk3399_rockchip-uboot/drivers/i2c/Makefile
/rk3399_rockchip-uboot/drivers/i2c/i2c-gpio.c
/rk3399_rockchip-uboot/drivers/input/cros_ec_keyb.c
/rk3399_rockchip-uboot/drivers/input/i8042.c
/rk3399_rockchip-uboot/drivers/misc/Kconfig
/rk3399_rockchip-uboot/drivers/misc/cros_ec.c
/rk3399_rockchip-uboot/drivers/misc/cros_ec_i2c.c
/rk3399_rockchip-uboot/drivers/misc/cros_ec_lpc.c
/rk3399_rockchip-uboot/drivers/misc/cros_ec_sandbox.c
/rk3399_rockchip-uboot/drivers/misc/cros_ec_spi.c
/rk3399_rockchip-uboot/drivers/spi/Makefile
/rk3399_rockchip-uboot/drivers/spi/fsl_dspi.c
/rk3399_rockchip-uboot/drivers/spi/fsl_qspi.c
/rk3399_rockchip-uboot/include/configs/exynos5420-common.h
/rk3399_rockchip-uboot/include/configs/sandbox.h
/rk3399_rockchip-uboot/include/configs/smdk5250.h
/rk3399_rockchip-uboot/include/configs/snow.h
/rk3399_rockchip-uboot/include/cros_ec.h
device.h
/rk3399_rockchip-uboot/include/fdtdec.h
/rk3399_rockchip-uboot/include/fsl_dspi.h
/rk3399_rockchip-uboot/include/linker_lists.h
/rk3399_rockchip-uboot/include/net.h
/rk3399_rockchip-uboot/include/os.h
/rk3399_rockchip-uboot/lib/fdtdec.c
/rk3399_rockchip-uboot/net/eth.c
/rk3399_rockchip-uboot/test/dm/bus.c
a274e9ca26-Mar-2015 Simon Glass <sjg@chromium.org>

dm: x86: Add a uclass for an Low Pin Count (LPC) device

On x86 systems this device is commonly used to provide legacy port access.
It is sort-of a replacement for the old ISA bus.

Add a uclass for

dm: x86: Add a uclass for an Low Pin Count (LPC) device

On x86 systems this device is commonly used to provide legacy port access.
It is sort-of a replacement for the old ISA bus.

Add a uclass for this, and allow it to have child devices.

Signed-off-by: Simon Glass <sjg@chromium.org>

show more ...

05c3e68f22-Mar-2015 Joe Hershberger <joe.hershberger@ni.com>

dm: eth: Add basic driver model support to Ethernet stack

First just add support for MAC drivers.

Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
Reviewed-by: Simon Glass <sjg@chromium.org>


/rk3399_rockchip-uboot/api/api_net.c
/rk3399_rockchip-uboot/arch/arm/lib/board.c
/rk3399_rockchip-uboot/arch/arm/lib/bootm.c
/rk3399_rockchip-uboot/arch/avr32/lib/board.c
/rk3399_rockchip-uboot/arch/mips/mach-au1x00/au1x00_eth.c
/rk3399_rockchip-uboot/arch/nds32/lib/board.c
/rk3399_rockchip-uboot/arch/openrisc/lib/board.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8260/ether_fcc.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/ether_fcc.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xx/scc.c
/rk3399_rockchip-uboot/arch/powerpc/lib/board.c
/rk3399_rockchip-uboot/arch/sh/lib/board.c
/rk3399_rockchip-uboot/arch/sparc/lib/board.c
/rk3399_rockchip-uboot/arch/x86/cpu/ivybridge/bd82x6x.c
/rk3399_rockchip-uboot/arch/x86/cpu/ivybridge/cpu.c
/rk3399_rockchip-uboot/arch/x86/cpu/ivybridge/lpc.c
/rk3399_rockchip-uboot/arch/x86/cpu/ivybridge/pci.c
/rk3399_rockchip-uboot/arch/x86/dts/chromebook_link.dts
/rk3399_rockchip-uboot/arch/x86/include/asm/arch-ivybridge/bd82x6x.h
/rk3399_rockchip-uboot/board/BuS/eb_cpux9k2/cpux9k2.c
/rk3399_rockchip-uboot/board/BuS/vl_ma2sc/vl_ma2sc.c
/rk3399_rockchip-uboot/board/atmel/at91sam9261ek/at91sam9261ek.c
/rk3399_rockchip-uboot/board/egnite/ethernut5/ethernut5.c
/rk3399_rockchip-uboot/board/ronetix/pm9261/pm9261.c
/rk3399_rockchip-uboot/board/ronetix/pm9g45/pm9g45.c
/rk3399_rockchip-uboot/common/board_f.c
/rk3399_rockchip-uboot/common/board_r.c
/rk3399_rockchip-uboot/common/bootm.c
/rk3399_rockchip-uboot/common/cmd_bdinfo.c
/rk3399_rockchip-uboot/common/cmd_bootm.c
/rk3399_rockchip-uboot/common/cmd_demo.c
/rk3399_rockchip-uboot/common/cmd_fat.c
/rk3399_rockchip-uboot/common/cmd_fdt.c
/rk3399_rockchip-uboot/common/cmd_lzmadec.c
/rk3399_rockchip-uboot/common/cmd_md5sum.c
/rk3399_rockchip-uboot/common/cmd_mem.c
/rk3399_rockchip-uboot/common/cmd_net.c
/rk3399_rockchip-uboot/common/cmd_nvedit.c
/rk3399_rockchip-uboot/common/cmd_pxe.c
/rk3399_rockchip-uboot/common/cmd_sf.c
/rk3399_rockchip-uboot/common/cmd_source.c
/rk3399_rockchip-uboot/common/cmd_trace.c
/rk3399_rockchip-uboot/common/cmd_ximg.c
/rk3399_rockchip-uboot/common/hash.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/iotrace.c
/rk3399_rockchip-uboot/common/lcd.c
/rk3399_rockchip-uboot/common/malloc_simple.c
/rk3399_rockchip-uboot/common/spl/spl_net.c
/rk3399_rockchip-uboot/configs/chromebook_link_defconfig
/rk3399_rockchip-uboot/configs/chromebox_panther_defconfig
/rk3399_rockchip-uboot/doc/README.drivers.eth
/rk3399_rockchip-uboot/drivers/demo/demo-simple.c
/rk3399_rockchip-uboot/drivers/i2c/i2c-uniphier-f.c
/rk3399_rockchip-uboot/drivers/i2c/i2c-uniphier.c
/rk3399_rockchip-uboot/drivers/mtd/spi/sf_probe.c
/rk3399_rockchip-uboot/drivers/net/4xx_enet.c
/rk3399_rockchip-uboot/drivers/net/Kconfig
/rk3399_rockchip-uboot/drivers/net/netconsole.c
/rk3399_rockchip-uboot/drivers/serial/ns16550.c
/rk3399_rockchip-uboot/drivers/serial/serial_uniphier.c
/rk3399_rockchip-uboot/fs/fs.c
/rk3399_rockchip-uboot/include/common.h
uclass-id.h
/rk3399_rockchip-uboot/include/mapmem.h
/rk3399_rockchip-uboot/include/net.h
/rk3399_rockchip-uboot/lib/fdtdec.c
/rk3399_rockchip-uboot/lib/trace.c
/rk3399_rockchip-uboot/net/eth.c
/rk3399_rockchip-uboot/net/net.c
/rk3399_rockchip-uboot/net/nfs.c
/rk3399_rockchip-uboot/net/tftp.c
/rk3399_rockchip-uboot/test/compression.c
/rk3399_rockchip-uboot/test/dm/Makefile
/rk3399_rockchip-uboot/test/dm/cmd_dm.c
/rk3399_rockchip-uboot/test/dm/pci.c
/rk3399_rockchip-uboot/test/dm/test.dts
801f4f1b05-Mar-2015 Simon Glass <sjg@chromium.org>

dm: x86: pci: Convert coreboot to use driver model for pci

Move coreboot-x86 over to driver model for PCI.

Signed-off-by: Simon Glass <sjg@chromium.org>

36d0d3b405-Mar-2015 Simon Glass <sjg@chromium.org>

dm: sandbox: pci: Add a PCI emulation uclass

Since sandbox does not have real devices (unless it borrows those from the
host) it must use emulations. Provide a uclass which permits PCI operations
to

dm: sandbox: pci: Add a PCI emulation uclass

Since sandbox does not have real devices (unless it borrows those from the
host) it must use emulations. Provide a uclass which permits PCI operations
to be passed through to an emulation device.

Signed-off-by: Simon Glass <sjg@chromium.org>

show more ...

ff3e077b05-Mar-2015 Simon Glass <sjg@chromium.org>

dm: pci: Add a uclass for PCI

Add a uclass for PCI controllers and a generic one for PCI devices. Adjust
the 'pci' command and the existing PCI support to work with this new uclass.
Keep most of the

dm: pci: Add a uclass for PCI

Add a uclass for PCI controllers and a generic one for PCI devices. Adjust
the 'pci' command and the existing PCI support to work with this new uclass.
Keep most of the compatibility code in a separate file so that it can be
removed one day.

TODO: Add more header file comments to the new parts of pci.h

Signed-off-by: Simon Glass <sjg@chromium.org>

show more ...

02c07b3705-Mar-2015 Simon Glass <sjg@chromium.org>

dm: core: Add a uclass pre_probe() method for devices

Some uclasses want to set up a device before it is probed. Add a method
for this.

An example is with PCI, where a PCI uclass wants to set up it

dm: core: Add a uclass pre_probe() method for devices

Some uclasses want to set up a device before it is probed. Add a method
for this.

An example is with PCI, where a PCI uclass wants to set up its private
data for later use. This allows the device's uclass() method to make calls
whcih use that data (for example, read PCI memory regions from device
tree, set up bus numbers).

Signed-off-by: Simon Glass <sjg@chromium.org>

show more ...

12345678910>>...13