History log of /rk3399_rockchip-uboot/common/ (Results 3126 – 3150 of 5256)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
6cb3273d12-Sep-2012 Marek Vasut <marex@denx.de>

serial: mips: Implement CONFIG_SERIAL_MULTI into JZ serial driver

Implement support for CONFIG_SERIAL_MULTI into JZ serial driver.
This driver was so far only usable directly, but this patch also ad

serial: mips: Implement CONFIG_SERIAL_MULTI into JZ serial driver

Implement support for CONFIG_SERIAL_MULTI into JZ serial driver.
This driver was so far only usable directly, but this patch also adds
support for the multi method. This allows using more than one serial
driver alongside the JZ driver. Also, add a weak implementation
of default_serial_console() returning this driver.

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Marek Vasut <marek.vasut@gmail.com>
Cc: Tom Rini <trini@ti.com>
Cc: Daniel Schwierzeck <daniel.schwierzeck@googlemail.com>

show more ...

0191142212-Sep-2012 Marek Vasut <marex@denx.de>

serial: mips: Implement CONFIG_SERIAL_MULTI into asc serial driver

Implement support for CONFIG_SERIAL_MULTI into asc serial driver.
This driver was so far only usable directly, but this patch also

serial: mips: Implement CONFIG_SERIAL_MULTI into asc serial driver

Implement support for CONFIG_SERIAL_MULTI into asc serial driver.
This driver was so far only usable directly, but this patch also adds
support for the multi method. This allows using more than one serial
driver alongside the asc driver. Also, add a weak implementation
of default_serial_console() returning this driver.

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Marek Vasut <marek.vasut@gmail.com>
Cc: Tom Rini <trini@ti.com>
Cc: Daniel Schwierzeck <daniel.schwierzeck@googlemail.com>

show more ...

7b953c5112-Sep-2012 Marek Vasut <marex@denx.de>

serial: mips: Implement CONFIG_SERIAL_MULTI into au1x00 serial driver

Implement support for CONFIG_SERIAL_MULTI into au1x00 serial driver.
This driver was so far only usable directly, but this patch

serial: mips: Implement CONFIG_SERIAL_MULTI into au1x00 serial driver

Implement support for CONFIG_SERIAL_MULTI into au1x00 serial driver.
This driver was so far only usable directly, but this patch also adds
support for the multi method. This allows using more than one serial
driver alongside the au1x00 driver. Also, add a weak implementation
of default_serial_console() returning this driver.

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Marek Vasut <marek.vasut@gmail.com>
Cc: Tom Rini <trini@ti.com>
Cc: Daniel Schwierzeck <daniel.schwierzeck@googlemail.com>

show more ...

41651cab12-Sep-2012 Marek Vasut <marex@denx.de>

serial: bfin: Flip the jtag serial console to CONFIG_SERIAL_MULTI

Rework the emulation of serial console via JTAG from simple ad-hoc
implementation of serial port routines to CONFIG_SERIAL_MULTI and

serial: bfin: Flip the jtag serial console to CONFIG_SERIAL_MULTI

Rework the emulation of serial console via JTAG from simple ad-hoc
implementation of serial port routines to CONFIG_SERIAL_MULTI and
enable CONFIG_SERIAL_MULTI unconditionally for blackfin.

In order for the JTAG serial console to take precedence over all
other serial ports available in system, implement override for
default_serial_console call returning this JTAG serial console.

This brings in a bit of a growth of size, but eventually will allow
us to unconditionally enable CONFIG_SERIAL_MULTI throughout the whole
U-Boot and maintain only one serial subsystem.

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Marek Vasut <marek.vasut@gmail.com>
Cc: Tom Rini <trini@ti.com>
Cc: Mike Frysinger <vapier@gentoo.org>

show more ...

5ae1de0d12-Sep-2012 Marek Vasut <marex@denx.de>

serial: bfin: Adjust serial_register_bfin_uart()

Rename the serial_register_bfin_uart() to bfin_initialize_serial()
to be consistent with the rest of the naming. Next, remove it's
prototype from ser

serial: bfin: Adjust serial_register_bfin_uart()

Rename the serial_register_bfin_uart() to bfin_initialize_serial()
to be consistent with the rest of the naming. Next, remove it's
prototype from serial.h and properly insert it into serial.c as
the rest of the serial initialization functions.

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Marek Vasut <marek.vasut@gmail.com>
Cc: Tom Rini <trini@ti.com>
Cc: Mike Frysinger <vapier@gentoo.org>

show more ...

abc0ed8d12-Sep-2012 Marek Vasut <marex@denx.de>

serial: ns16550: Move serial registration from serial_initialize()

Move the registration of eserialN_device ports from default
serial_initialize() into driver specific function called from
serial_in

serial: ns16550: Move serial registration from serial_initialize()

Move the registration of eserialN_device ports from default
serial_initialize() into driver specific function called from
serial_initialize(). This slims down the serial_initialize() call
to a bare tracker of all possible serial port registration routines
in U-Boot.

The newly implemented ns16550_serial_initialize() function, which is
implemented inside of the ns16550 serial driver allows encapsulation
of eserialN_device within the ns16550 serial driver itself.

Also, remove the exports of eserialN_device from include/serial.h
as they are no longer needed. This is simply because the implementation of
default_serial_console() is wrapped into the ns16550 serial driver and
the default console is picked by CONFIG_SERIAL<N> macro in config file.

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Marek Vasut <marek.vasut@gmail.com>
Cc: Tom Rini <trini@ti.com>
Cc: Anatolij Gustschin <agust@denx.de>
Cc: Stefan Roese <sr@denx.de>
Cc: Mike Frysinger <vapier@gentoo.org>
Cc: Michal Simek <monstr@monstr.eu>

show more ...

918327c812-Sep-2012 Marek Vasut <marex@denx.de>

serial: mpc512x: Move serial registration from serial_initialize()

Move the registration of serialN_device ports from default
serial_initialize() into driver specific function called from
serial_ini

serial: mpc512x: Move serial registration from serial_initialize()

Move the registration of serialN_device ports from default
serial_initialize() into driver specific function called from
serial_initialize(). This slims down the serial_initialize() call
to a bare tracker of all possible serial port registration routines
in U-Boot.

The newly implemented mpc512x_serial_initialize() function, which is
implemented inside of the mpc512x serial driver allows encapsulation
of serialN_device within the mpc512x serial driver itself.

Also, remove the exports of serialN_device from include/serial.h
as they are no longer needed. This is simply because the implementation of
default_serial_console() is wrapped into the mpx512x serial driver and
the default console is picked by CONFIG_SERIAL<N> macro in config file.

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Marek Vasut <marek.vasut@gmail.com>
Cc: Tom Rini <trini@ti.com>
Cc: Anatolij Gustschin <agust@denx.de>
Cc: Stefan Roese <sr@denx.de>

show more ...

87d6922912-Sep-2012 Marek Vasut <marex@denx.de>

serial: microblaze: Move serial registration from serial_initialize()

Move the registration of xuartlite_serialN_device ports from
default serial_initialize() into driver specific function called fr

serial: microblaze: Move serial registration from serial_initialize()

Move the registration of xuartlite_serialN_device ports from
default serial_initialize() into driver specific function called from
serial_initialize(). This slims down the serial_initialize() call
to a bare tracker of all possible serial port registration routines
in U-Boot.

The newly implemented xuartlite_serial_initialize() function, which is
implemented inside of the serial_xuartlite driver allows encapsulation
of xuartlite_serialN_device within the serial_xuartlite driver itself.

Also, remove the exports of xuartlite_serialN_device from include/serial.h
as they are no longer needed. This is simply because the implementation of
default_serial_console() is wrapped into the serial_xuartlite driver and
the default console is picked by CONFIG_SERIAL<N> macro in config file.

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Marek Vasut <marek.vasut@gmail.com>
Cc: Tom Rini <trini@ti.com>
Cc: Michal Simek <monstr@monstr.eu>

show more ...

51d8102f08-Oct-2012 Tom Rini <trini@ti.com>

serial: zynq: Move serial registration from serial_initialize()

Move the registration of zynq_serialN_device ports from default
serial_initialize() into driver specific function called from
serial_i

serial: zynq: Move serial registration from serial_initialize()

Move the registration of zynq_serialN_device ports from default
serial_initialize() into driver specific function called from
serial_initialize(). This slims down the serial_initialize() call
to a bare tracker of all possible serial port registration routines
in U-Boot.

The newly implemented zynq_serial_initialize() function, which is
implemented inside of the serial_zynq driver allows encapsulation
of zynq_serialN_device within the serial_zynq driver itself.

Also, remove the exports of zynq_serialN_device from include/serial.h
as they are no longer needed. This is simply because the implementation of
default_serial_console() is wrapped into the serial_zynq driver and
the default console is picked by CONFIG_SERIAL<N> macro in config file.

Signed-off-by: Tom Rini <trini@ti.com>

show more ...

b498051512-Sep-2012 Marek Vasut <marex@denx.de>

serial: s5p: Move serial registration from serial_initialize()

Move the registration of s5p_serialN_device ports from default
serial_initialize() into driver specific function called from
serial_ini

serial: s5p: Move serial registration from serial_initialize()

Move the registration of s5p_serialN_device ports from default
serial_initialize() into driver specific function called from
serial_initialize(). This slims down the serial_initialize() call
to a bare tracker of all possible serial port registration routines
in U-Boot.

The newly implemented s5p_serial_initialize() function, which is
implemented inside of the serial_s5p driver allows encapsulation
of s5p_serialN_device within the serial_s5p driver itself.

Also, remove the exports of s5p_serialN_device from include/serial.h
as they are no longer needed. This is simply because the implementation of
default_serial_console() is wrapped into the serial_s5p driver and
the default console is picked by CONFIG_SERIAL<N> macro in config file.

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Marek Vasut <marek.vasut@gmail.com>
Cc: Tom Rini <trini@ti.com>
Cc: Minkyu Kang <mk7.kang@samsung.com>

show more ...

1fe5c11012-Sep-2012 Marek Vasut <marex@denx.de>

serial: pxa: Move serial registration from serial_initialize()

Move the registration of serial_XXuart ports from default
serial_initialize() into driver specific function called from
serial_initiali

serial: pxa: Move serial registration from serial_initialize()

Move the registration of serial_XXuart ports from default
serial_initialize() into driver specific function called from
serial_initialize(). This slims down the serial_initialize() call
to a bare tracker of all possible serial port registration routines
in U-Boot.

The newly implemented pxa_serial_initialize() function, which is
implemented inside of the serial_pxa driver allows encapsulation
of serial_XXuart within the serial_pxa driver itself.

Also, remove the exports of serial_XXuart from include/serial.h
as they are no longer needed. This is simply because the implementation of
default_serial_console() is wrapped into the serial_pxa driver and
the default console is picked by CONFIG_CONS_IDX macro in config file.

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Marek Vasut <marek.vasut@gmail.com>
Cc: Tom Rini <trini@ti.com>

show more ...

28af638512-Sep-2012 Marek Vasut <marex@denx.de>

serial: s3c24xx: Move serial registration from serial_initialize()

Move the registration of s3c24xx_serialN_device ports from
default serial_initialize() into driver specific function called from
se

serial: s3c24xx: Move serial registration from serial_initialize()

Move the registration of s3c24xx_serialN_device ports from
default serial_initialize() into driver specific function called from
serial_initialize(). This slims down the serial_initialize() call
to a bare tracker of all possible serial port registration routines
in U-Boot.

The newly implemented s3c24xx_serial_initialize() function, which is
implemented inside of the serial_s3c24xx driver allows encapsulation
of s3c24xx_serialN_device within the serial_s3c24xx driver itself.

Also, remove the exports of s3c24xx_serialN_device from include/serial.h
as they are no longer needed. This is simply because the implementation of
default_serial_console() is wrapped into the serial_s3c24xx driver and
the default console is picked by CONFIG_SERIAL<N> macro in config file.

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Marek Vasut <marek.vasut@gmail.com>
Cc: Tom Rini <trini@ti.com>
Cc: C Nauman <cnauman@diagraph.com>

show more ...

f0eb1f6112-Sep-2012 Marek Vasut <marex@denx.de>

serial: mpc8xx: Move serial registration from serial_initialize()

Move the registration of serial_smc and serial_scc ports from
default serial_initialize() into CPU specific function called from
ser

serial: mpc8xx: Move serial registration from serial_initialize()

Move the registration of serial_smc and serial_scc ports from
default serial_initialize() into CPU specific function called from
serial_initialize(). This slims down the serial_initialize() call
to a bare tracker of all possible serial port registration routines
in U-Boot.

The exports of both serial_scc_device and serial_smc_device can
not yet be removed as they are still used in default_serial_console()
calls.

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Marek Vasut <marek.vasut@gmail.com>
Cc: Tom Rini <trini@ti.com>
Cc: Anatolij Gustschin <agust@denx.de>
Cc: Stefan Roese <sr@denx.de>
Cc: Mike Frysinger <vapier@gentoo.org>

show more ...

2a333aeb12-Sep-2012 Marek Vasut <marex@denx.de>

serial: Implement serial_initfunc() macro

This macro simplifies declaration of weak aliases for per-driver
functions, which register these drivers with the serial subsystem.
The idea here is to push

serial: Implement serial_initfunc() macro

This macro simplifies declaration of weak aliases for per-driver
functions, which register these drivers with the serial subsystem.
The idea here is to push serial_register() calls from serial.c into
the drivers. To avoid pile of ifdef construct as it is now, create
weak aliases to these functions, which in case the driver is not
present alias onto an empty function, which is in turn optimized out
altogether.

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Marek Vasut <marek.vasut@gmail.com>
Cc: Tom Rini <trini@ti.com>
Cc: Anatolij Gustschin <agust@denx.de>
Cc: Stefan Roese <sr@denx.de>
Cc: Mike Frysinger <vapier@gentoo.org>

show more ...

89143fb307-Sep-2012 Marek Vasut <marex@denx.de>

serial: Rename .init() and .uninit() in serial_device

Rename .init() to .start() and .uninit() to .stop() in struct
serial_device. This allows aligning struct serial_device with
closer to struct std

serial: Rename .init() and .uninit() in serial_device

Rename .init() to .start() and .uninit() to .stop() in struct
serial_device. This allows aligning struct serial_device with
closer to struct stdio_dev. The real goal here is to allow
these two structures to converge together and eventually make
one to be a superset of the other.

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Marek Vasut <marek.vasut@gmail.com>
Signed-off-by: Tom Rini <trini@ti.com>

show more ...

5368c55d23-Sep-2012 Marek Vasut <marex@denx.de>

COMMON: Use __stringify() instead of MK_STR()

Kill multiple occurances and redeclaration of MK_STR
in favor of __stringify().

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Wolfgang Denk <wd@denx.d

COMMON: Use __stringify() instead of MK_STR()

Kill multiple occurances and redeclaration of MK_STR
in favor of __stringify().

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Wolfgang Denk <wd@denx.de>
Signed-off-by: Tom Rini <trini@ti.com>

show more ...


/rk3399_rockchip-uboot/arch/blackfin/include/asm/config-pre.h
/rk3399_rockchip-uboot/arch/blackfin/lib/board.c
/rk3399_rockchip-uboot/board/w7o/w7o.c
cmd_nvedit.c
env_common.c
env_embedded.c
/rk3399_rockchip-uboot/include/common.h
/rk3399_rockchip-uboot/include/configs/M52277EVB.h
/rk3399_rockchip-uboot/include/configs/M5253DEMO.h
/rk3399_rockchip-uboot/include/configs/M5373EVB.h
/rk3399_rockchip-uboot/include/configs/M54451EVB.h
/rk3399_rockchip-uboot/include/configs/M54455EVB.h
/rk3399_rockchip-uboot/include/configs/MERGERBOX.h
/rk3399_rockchip-uboot/include/configs/MPC8260ADS.h
/rk3399_rockchip-uboot/include/configs/MPC8308RDB.h
/rk3399_rockchip-uboot/include/configs/MPC8313ERDB.h
/rk3399_rockchip-uboot/include/configs/MPC8323ERDB.h
/rk3399_rockchip-uboot/include/configs/MPC8349ITX.h
/rk3399_rockchip-uboot/include/configs/MPC837XERDB.h
/rk3399_rockchip-uboot/include/configs/MPC8536DS.h
/rk3399_rockchip-uboot/include/configs/MPC8544DS.h
/rk3399_rockchip-uboot/include/configs/MPC8548CDS.h
/rk3399_rockchip-uboot/include/configs/MPC8572DS.h
/rk3399_rockchip-uboot/include/configs/MPC8610HPCD.h
/rk3399_rockchip-uboot/include/configs/MPC8641HPCN.h
/rk3399_rockchip-uboot/include/configs/MVBC_P.h
/rk3399_rockchip-uboot/include/configs/MVBLM7.h
/rk3399_rockchip-uboot/include/configs/MVSMR.h
/rk3399_rockchip-uboot/include/configs/P1010RDB.h
/rk3399_rockchip-uboot/include/configs/P1022DS.h
/rk3399_rockchip-uboot/include/configs/P1_P2_RDB.h
/rk3399_rockchip-uboot/include/configs/P2020DS.h
/rk3399_rockchip-uboot/include/configs/P2041RDB.h
/rk3399_rockchip-uboot/include/configs/SIMPC8313.h
/rk3399_rockchip-uboot/include/configs/amcc-common.h
/rk3399_rockchip-uboot/include/configs/at91sam9263ek.h
/rk3399_rockchip-uboot/include/configs/bf537-minotaur.h
/rk3399_rockchip-uboot/include/configs/bf537-srv1.h
/rk3399_rockchip-uboot/include/configs/bfin_adi_common.h
/rk3399_rockchip-uboot/include/configs/blackstamp.h
/rk3399_rockchip-uboot/include/configs/blackvme.h
/rk3399_rockchip-uboot/include/configs/cam_enc_4xx.h
/rk3399_rockchip-uboot/include/configs/corenet_ds.h
/rk3399_rockchip-uboot/include/configs/ea20.h
/rk3399_rockchip-uboot/include/configs/enbw_cmc.h
/rk3399_rockchip-uboot/include/configs/flea3.h
/rk3399_rockchip-uboot/include/configs/ima3-mx53.h
/rk3399_rockchip-uboot/include/configs/imx27lite-common.h
/rk3399_rockchip-uboot/include/configs/km/keymile-common.h
/rk3399_rockchip-uboot/include/configs/km/km-powerpc.h
/rk3399_rockchip-uboot/include/configs/km/km_arm.h
/rk3399_rockchip-uboot/include/configs/linkstation.h
/rk3399_rockchip-uboot/include/configs/lsxl.h
/rk3399_rockchip-uboot/include/configs/manroland/common.h
/rk3399_rockchip-uboot/include/configs/mcc200.h
/rk3399_rockchip-uboot/include/configs/mpc8308_p1m.h
/rk3399_rockchip-uboot/include/configs/mx35pdk.h
/rk3399_rockchip-uboot/include/configs/p1_p2_rdb_pc.h
/rk3399_rockchip-uboot/include/configs/qong.h
/rk3399_rockchip-uboot/include/configs/sbc8548.h
/rk3399_rockchip-uboot/include/configs/socfpga_cyclone5.h
/rk3399_rockchip-uboot/include/configs/tam3517-common.h
/rk3399_rockchip-uboot/include/configs/tx25.h
/rk3399_rockchip-uboot/include/configs/ve8313.h
/rk3399_rockchip-uboot/include/configs/xpedite1000.h
/rk3399_rockchip-uboot/include/configs/xpedite517x.h
/rk3399_rockchip-uboot/include/configs/xpedite520x.h
/rk3399_rockchip-uboot/include/configs/xpedite537x.h
/rk3399_rockchip-uboot/include/configs/xpedite550x.h
/rk3399_rockchip-uboot/include/linux/stringify.h
/rk3399_rockchip-uboot/tools/env/fw_env.c
868444fa01-Oct-2012 Tom Rini <trini@ti.com>

SPL: Remove setting GD_FLG_RELOC in preloader_console_init()

We have not strictly speaking relocated at this point, do not claim that
we have. This is not required for output.

Signed-off-by: Tom R

SPL: Remove setting GD_FLG_RELOC in preloader_console_init()

We have not strictly speaking relocated at this point, do not claim that
we have. This is not required for output.

Signed-off-by: Tom Rini <trini@ti.com>

show more ...

61c0d6ae26-Sep-2012 Tom Rini <trini@ti.com>

gth2: Remove this platform

After taking with the former maintainer, delete this platform. The
patch is from the former maintainer.

Signed-off-by: Tom Rini <trini@ti.com>

b0d60a9816-Sep-2012 Daniel Schwierzeck <daniel.schwierzeck@gmail.com>

common: cmd_elf.c: use uintptr_t for casts from u32 to void*

This fixes warnings when compiling with ELDK-5.2.1 for MIPS64:

cmd_elf.c: In function 'load_elf_image_phdr':
cmd_elf.c:289:15: warning:

common: cmd_elf.c: use uintptr_t for casts from u32 to void*

This fixes warnings when compiling with ELDK-5.2.1 for MIPS64:

cmd_elf.c: In function 'load_elf_image_phdr':
cmd_elf.c:289:15: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
cmd_elf.c: In function 'load_elf_image_shdr':
cmd_elf.c:343:12: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
cmd_elf.c:346:12: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]

Signed-off-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>

show more ...

62e03d3316-Sep-2012 Daniel Schwierzeck <daniel.schwierzeck@gmail.com>

common: cmd_elf.c: fix checkpath.pl warnings

[Tom: Move valid_elf_image around and don't mark it as static as another
board makes use of this function]

Signed-off-by: Daniel Schwierzeck <daniel.sch

common: cmd_elf.c: fix checkpath.pl warnings

[Tom: Move valid_elf_image around and don't mark it as static as another
board makes use of this function]

Signed-off-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
Signed-off-by: Tom Rini <trini@ti.com>

show more ...

b823fd9b09-Oct-2012 Albert ARIBAUD <albert.u.boot@aribaud.net>

ARM: prevent misaligned array inits

Under option -munaligned-access, gcc can perform local char
or 16-bit array initializations using misaligned native
accesses which will throw a data abort excepti

ARM: prevent misaligned array inits

Under option -munaligned-access, gcc can perform local char
or 16-bit array initializations using misaligned native
accesses which will throw a data abort exception. Fix files
where these array initializations were unneeded, and for
files known to contain such initializations, enforce gcc
option -mno-unaligned-access.

Signed-off-by: Albert ARIBAUD <albert.u.boot@aribaud.net>
[trini: Switch to usign call cc-option for -mno-unaligned-access as
Albert had done previously as that's really correct]
Signed-off-by: Tom Rini <trini@ti.com>

show more ...

7ac8055105-Oct-2012 Gerlando Falauto <gerlando.falauto@keymile.com>

env: fix crash using default -f -a

env default -a -f calls env_check_apply on all existing environment
variables with a NULL value for "newval" as a way of cleaning up.
This causes string manipulati

env: fix crash using default -f -a

env default -a -f calls env_check_apply on all existing environment
variables with a NULL value for "newval" as a way of cleaning up.
This causes string manipulation functions to crash on most architectures.
So replace a NULL argument with an empty string.

Reported-By: Stefano Babic <sbabic@denx.de>
Signed-off-by: Gerlando Falauto <gerlando.falauto@keymile.com>
Tested-by: Stefano Babic <sbabic@denx.de>

show more ...

961c437b04-Oct-2012 Joe Hershberger <joe.hershberger@ni.com>

Improve license declaration for cmd_ini.h

Instead of referenceing the source webpage (which can change) include
the license in the source file.

Signed-off-by: Joe Hershberger <joe.hershberger@ni.co

Improve license declaration for cmd_ini.h

Instead of referenceing the source webpage (which can change) include
the license in the source file.

Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
Reported-by: Igor Grinberg <grinberg@compulab.co.il>
Cc: Igor Grinberg <grinberg@compulab.co.il>
Cc: Tom Rini <trini@ti.com>
Cc: Wolfgang Denk <wd@denx.de>
Acked-by: Wolfgang Denk <wd@denx.de>

show more ...

1981668704-Oct-2012 Tom Rini <trini@ti.com>

Merge branch 'master' of git://git.denx.de/u-boot-arm


/rk3399_rockchip-uboot/MAINTAINERS
/rk3399_rockchip-uboot/arch/arm/config.mk
/rk3399_rockchip-uboot/arch/arm/cpu/arm1136/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm1176/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm920t/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm925t/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/kirkwood/dram.c
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm946es/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm_intcm/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap-common/config.mk
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap-common/lowlevel_init.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/rmobile/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/rmobile/board.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/rmobile/config.mk
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/rmobile/cpu_info-r8a7740.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/rmobile/cpu_info-sh73a0.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/rmobile/cpu_info.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/rmobile/emac.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/rmobile/lowlevel_init.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/rmobile/pfc-r8a7740.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/rmobile/pfc-sh73a0.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/rmobile/timer.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/socfpga/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/socfpga/config.mk
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/socfpga/lowlevel_init.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/socfpga/misc.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/socfpga/spl.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/socfpga/timer.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/socfpga/u-boot-spl.lds
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/zynq/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/zynq/cpu.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/zynq/timer.c
/rk3399_rockchip-uboot/arch/arm/cpu/ixp/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/lh7a40x/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/pxa/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/s3c44b0/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/sa1100/start.S
/rk3399_rockchip-uboot/arch/arm/imx-common/cpu.c
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-am33xx/spl.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-armv7/globaltimer.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-kirkwood/cpu.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-kirkwood/mpp.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx5/imx-regs.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-orion5x/cpu.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rmobile/gpio.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rmobile/irqs.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rmobile/r8a7740-gpio.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rmobile/r8a7740.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rmobile/rmobile.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rmobile/sh73a0-gpio.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rmobile/sh73a0.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rmobile/sys_proto.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-s3c24x0/gpio.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-s3c24x0/iomux.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-socfpga/reset_manager.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-socfpga/socfpga_base_addrs.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-socfpga/spl.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-socfpga/timer.h
/rk3399_rockchip-uboot/arch/arm/include/asm/mach-types.h
/rk3399_rockchip-uboot/arch/arm/lib/bootm.c
/rk3399_rockchip-uboot/board/LaCie/common/common.c
/rk3399_rockchip-uboot/board/LaCie/common/common.h
/rk3399_rockchip-uboot/board/LaCie/netspace_v2/kwbimage-ns2l.cfg
/rk3399_rockchip-uboot/board/LaCie/netspace_v2/netspace_v2.c
/rk3399_rockchip-uboot/board/altera/socfpga_cyclone5/Makefile
/rk3399_rockchip-uboot/board/altera/socfpga_cyclone5/socfpga_cyclone5.c
/rk3399_rockchip-uboot/board/atmark-techno/armadillo-800eva/Makefile
/rk3399_rockchip-uboot/board/atmark-techno/armadillo-800eva/armadillo-800eva.c
/rk3399_rockchip-uboot/board/atmel/at91sam9x5ek/at91sam9x5ek.c
/rk3399_rockchip-uboot/board/buffalo/lsxl/lsxl.c
/rk3399_rockchip-uboot/board/davinci/ea20/ea20.c
/rk3399_rockchip-uboot/board/freescale/mx28evk/mx28evk.c
/rk3399_rockchip-uboot/board/freescale/mx51evk/mx51evk.c
/rk3399_rockchip-uboot/board/friendlyarm/mini2440/Makefile
/rk3399_rockchip-uboot/board/friendlyarm/mini2440/mini2440.c
/rk3399_rockchip-uboot/board/friendlyarm/mini2440/mini2440.h
/rk3399_rockchip-uboot/board/iomega/iconnect/Makefile
/rk3399_rockchip-uboot/board/iomega/iconnect/iconnect.c
/rk3399_rockchip-uboot/board/iomega/iconnect/iconnect.h
/rk3399_rockchip-uboot/board/iomega/iconnect/kwbimage.cfg
/rk3399_rockchip-uboot/board/karo/tx25/lowlevel_init.S
/rk3399_rockchip-uboot/board/keymile/km_arm/km_arm.c
/rk3399_rockchip-uboot/board/kmc/kzm9g/Makefile
/rk3399_rockchip-uboot/board/kmc/kzm9g/kzm9g.c
/rk3399_rockchip-uboot/board/raidsonic/ib62x0/ib62x0.c
/rk3399_rockchip-uboot/board/raidsonic/ib62x0/ib62x0.h
/rk3399_rockchip-uboot/board/spear/x600/Makefile
/rk3399_rockchip-uboot/board/spear/x600/fpga.c
/rk3399_rockchip-uboot/board/spear/x600/fpga.h
/rk3399_rockchip-uboot/board/spear/x600/x600.c
/rk3399_rockchip-uboot/board/st-ericsson/snowball/snowball.c
/rk3399_rockchip-uboot/board/ti/beagle/beagle.c
/rk3399_rockchip-uboot/board/xilinx/zynq/Makefile
/rk3399_rockchip-uboot/board/xilinx/zynq/board.c
/rk3399_rockchip-uboot/boards.cfg
Makefile
cmd_nvedit.c
env_common.c
serial.c
spl/Makefile
spl/spl.c
spl/spl_net.c
/rk3399_rockchip-uboot/config.mk
/rk3399_rockchip-uboot/doc/README.mini2440
/rk3399_rockchip-uboot/doc/README.rmobile
/rk3399_rockchip-uboot/doc/git-mailrc
/rk3399_rockchip-uboot/drivers/gpio/Makefile
/rk3399_rockchip-uboot/drivers/gpio/s3c2440_gpio.c
/rk3399_rockchip-uboot/drivers/i2c/sh_i2c.c
/rk3399_rockchip-uboot/drivers/mtd/nand/atmel_nand.c
/rk3399_rockchip-uboot/drivers/mtd/spi/atmel.c
/rk3399_rockchip-uboot/drivers/net/davinci_emac.c
/rk3399_rockchip-uboot/drivers/serial/Makefile
/rk3399_rockchip-uboot/drivers/serial/serial_zynq.c
/rk3399_rockchip-uboot/drivers/video/cfb_console.c
/rk3399_rockchip-uboot/drivers/video/mxc_ipuv3_fb.c
/rk3399_rockchip-uboot/fs/ext4/ext4_common.c
/rk3399_rockchip-uboot/fs/ext4/ext4fs.c
/rk3399_rockchip-uboot/include/bootstage.h
/rk3399_rockchip-uboot/include/config_uncmd_spl.h
/rk3399_rockchip-uboot/include/configs/am335x_evm.h
/rk3399_rockchip-uboot/include/configs/armadillo-800eva.h
/rk3399_rockchip-uboot/include/configs/at91sam9261ek.h
/rk3399_rockchip-uboot/include/configs/at91sam9m10g45ek.h
/rk3399_rockchip-uboot/include/configs/at91sam9x5ek.h
/rk3399_rockchip-uboot/include/configs/devkit8000.h
/rk3399_rockchip-uboot/include/configs/ea20.h
/rk3399_rockchip-uboot/include/configs/edminiv2.h
/rk3399_rockchip-uboot/include/configs/iconnect.h
/rk3399_rockchip-uboot/include/configs/km_kirkwood.h
/rk3399_rockchip-uboot/include/configs/kzm9g.h
/rk3399_rockchip-uboot/include/configs/lacie_kw.h
/rk3399_rockchip-uboot/include/configs/mini2440.h
/rk3399_rockchip-uboot/include/configs/mx28evk.h
/rk3399_rockchip-uboot/include/configs/mx51evk.h
/rk3399_rockchip-uboot/include/configs/omap4_panda.h
/rk3399_rockchip-uboot/include/configs/socfpga_cyclone5.h
/rk3399_rockchip-uboot/include/configs/x600.h
/rk3399_rockchip-uboot/include/configs/zynq.h
/rk3399_rockchip-uboot/include/ext4fs.h
/rk3399_rockchip-uboot/include/ipu_pixfmt.h
/rk3399_rockchip-uboot/include/serial.h
/rk3399_rockchip-uboot/include/sh_tmu.h
/rk3399_rockchip-uboot/include/spl.h
/rk3399_rockchip-uboot/lib/Makefile
/rk3399_rockchip-uboot/lib/hashtable.c
/rk3399_rockchip-uboot/mkconfig
/rk3399_rockchip-uboot/net/bootp.c
/rk3399_rockchip-uboot/spl/Makefile
/rk3399_rockchip-uboot/tools/binutils-version.sh
194846f314-Sep-2012 Michal Simek <monstr@monstr.eu>

serial: Add Zynq serial driver

The driver is used on Xilinx Zynq platform.

Signed-off-by: Michal Simek <monstr@monstr.eu>
CC: Joe Hershberger <joe.hershberger@gmail.com>
CC: Marek Vasut <marex@denx

serial: Add Zynq serial driver

The driver is used on Xilinx Zynq platform.

Signed-off-by: Michal Simek <monstr@monstr.eu>
CC: Joe Hershberger <joe.hershberger@gmail.com>
CC: Marek Vasut <marex@denx.de>
Acked-by: Marek Vasut <marex@denx.de>

show more ...


/rk3399_rockchip-uboot/MAINTAINERS
/rk3399_rockchip-uboot/arch/arm/config.mk
/rk3399_rockchip-uboot/arch/arm/cpu/arm1136/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm1176/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm920t/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm925t/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/kirkwood/dram.c
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm946es/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm_intcm/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap-common/config.mk
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap-common/lowlevel_init.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/rmobile/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/rmobile/board.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/rmobile/config.mk
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/rmobile/cpu_info-r8a7740.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/rmobile/cpu_info-sh73a0.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/rmobile/cpu_info.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/rmobile/emac.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/rmobile/lowlevel_init.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/rmobile/pfc-r8a7740.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/rmobile/pfc-sh73a0.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/rmobile/timer.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/ixp/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/lh7a40x/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/pxa/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/s3c44b0/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/sa1100/start.S
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-am33xx/spl.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-armv7/globaltimer.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-kirkwood/cpu.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-kirkwood/mpp.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-orion5x/cpu.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rmobile/gpio.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rmobile/irqs.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rmobile/r8a7740-gpio.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rmobile/r8a7740.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rmobile/rmobile.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rmobile/sh73a0-gpio.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rmobile/sh73a0.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rmobile/sys_proto.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-s3c24x0/gpio.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-s3c24x0/iomux.h
/rk3399_rockchip-uboot/arch/arm/include/asm/mach-types.h
/rk3399_rockchip-uboot/arch/arm/lib/bootm.c
/rk3399_rockchip-uboot/board/LaCie/common/common.c
/rk3399_rockchip-uboot/board/LaCie/common/common.h
/rk3399_rockchip-uboot/board/LaCie/netspace_v2/kwbimage-ns2l.cfg
/rk3399_rockchip-uboot/board/LaCie/netspace_v2/netspace_v2.c
/rk3399_rockchip-uboot/board/atmark-techno/armadillo-800eva/Makefile
/rk3399_rockchip-uboot/board/atmark-techno/armadillo-800eva/armadillo-800eva.c
/rk3399_rockchip-uboot/board/buffalo/lsxl/lsxl.c
/rk3399_rockchip-uboot/board/friendlyarm/mini2440/Makefile
/rk3399_rockchip-uboot/board/friendlyarm/mini2440/mini2440.c
/rk3399_rockchip-uboot/board/friendlyarm/mini2440/mini2440.h
/rk3399_rockchip-uboot/board/iomega/iconnect/Makefile
/rk3399_rockchip-uboot/board/iomega/iconnect/iconnect.c
/rk3399_rockchip-uboot/board/iomega/iconnect/iconnect.h
/rk3399_rockchip-uboot/board/iomega/iconnect/kwbimage.cfg
/rk3399_rockchip-uboot/board/keymile/km_arm/km_arm.c
/rk3399_rockchip-uboot/board/kmc/kzm9g/Makefile
/rk3399_rockchip-uboot/board/kmc/kzm9g/kzm9g.c
/rk3399_rockchip-uboot/board/raidsonic/ib62x0/ib62x0.c
/rk3399_rockchip-uboot/board/raidsonic/ib62x0/ib62x0.h
/rk3399_rockchip-uboot/board/spear/x600/Makefile
/rk3399_rockchip-uboot/board/spear/x600/fpga.c
/rk3399_rockchip-uboot/board/spear/x600/fpga.h
/rk3399_rockchip-uboot/board/spear/x600/x600.c
/rk3399_rockchip-uboot/boards.cfg
serial.c
/rk3399_rockchip-uboot/config.mk
/rk3399_rockchip-uboot/doc/README.mini2440
/rk3399_rockchip-uboot/doc/README.rmobile
/rk3399_rockchip-uboot/doc/git-mailrc
/rk3399_rockchip-uboot/drivers/gpio/Makefile
/rk3399_rockchip-uboot/drivers/gpio/s3c2440_gpio.c
/rk3399_rockchip-uboot/drivers/i2c/sh_i2c.c
/rk3399_rockchip-uboot/drivers/serial/Makefile
/rk3399_rockchip-uboot/drivers/serial/serial_zynq.c
/rk3399_rockchip-uboot/include/configs/am335x_evm.h
/rk3399_rockchip-uboot/include/configs/armadillo-800eva.h
/rk3399_rockchip-uboot/include/configs/edminiv2.h
/rk3399_rockchip-uboot/include/configs/iconnect.h
/rk3399_rockchip-uboot/include/configs/km_kirkwood.h
/rk3399_rockchip-uboot/include/configs/kzm9g.h
/rk3399_rockchip-uboot/include/configs/lacie_kw.h
/rk3399_rockchip-uboot/include/configs/mini2440.h
/rk3399_rockchip-uboot/include/configs/omap4_panda.h
/rk3399_rockchip-uboot/include/configs/x600.h
/rk3399_rockchip-uboot/include/serial.h
/rk3399_rockchip-uboot/include/sh_tmu.h
/rk3399_rockchip-uboot/tools/binutils-version.sh

1...<<121122123124125126127128129130>>...211