]> git.ipfire.org Git - people/ms/u-boot.git/log
people/ms/u-boot.git
11 years agotegra: Rename Medcom to Medcom-Wide
Thierry Reding [Wed, 19 Sep 2012 00:37:21 +0000 (00:37 +0000)] 
tegra: Rename Medcom to Medcom-Wide

Medcom is the marketing name for an older, PXA-based version of the same
device. In order to avoid confusion, rename the Tegra-based version to
the new marketing name.

Signed-off-by: Thierry Reding <thierry.reding@avionic-design.de>
Acked-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Tom Warren <twarren@nvidia.com>
11 years agotegra: Update Avionic Design vendor prefix
Thierry Reding [Wed, 19 Sep 2012 00:37:20 +0000 (00:37 +0000)] 
tegra: Update Avionic Design vendor prefix

The official vendor prefix for Avionic Design is now "ad". Update the
board DTS files accordingly.

Signed-off-by: Thierry Reding <thierry.reding@avionic-design.de>
Acked-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Tom Warren <twarren@nvidia.com>
11 years agotools: Add a README note about fw_printenv lock file
Joe Hershberger [Thu, 4 Oct 2012 08:31:00 +0000 (08:31 +0000)] 
tools: Add a README note about fw_printenv lock file

Add a mention of the lock file to the README for the fw_printenv tool.

Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
Reported-by: Luka Perkov <uboot@lukaperkov.net>
11 years agoenv: Check for NULL pointer in envmatch()
Joe Hershberger [Wed, 3 Oct 2012 09:38:50 +0000 (09:38 +0000)] 
env: Check for NULL pointer in envmatch()

If the pointer passed into envmatch() is NULL, return -1 instead of
crashing.

Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
11 years agotools/env: Serialize calls to fw_*env
Joe Hershberger [Wed, 3 Oct 2012 09:38:49 +0000 (09:38 +0000)] 
tools/env: Serialize calls to fw_*env

Use a lock file at /var/lock/fw_printenv.lock.
Avoids seriously confusing the MTD driver.

Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
11 years agotools/env: Don't call env_init() in fw_getenv()
Joe Hershberger [Wed, 3 Oct 2012 09:38:48 +0000 (09:38 +0000)] 
tools/env: Don't call env_init() in fw_getenv()

We will only call fw_getenv when the env has already been initialized.

Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
11 years agotools/env: Remove unneeded complexity
Joe Hershberger [Wed, 3 Oct 2012 09:38:47 +0000 (09:38 +0000)] 
tools/env: Remove unneeded complexity

The length included the name length, and then it was subtracted back
out on each use.  Now we don't include it in the first place.  Also
realloc as we process arguments and eliminate memset.  Use memcpy
instead of manually copying each byte.

Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
11 years agotools/env: Use a board-specific default env
Joe Hershberger [Wed, 3 Oct 2012 09:38:46 +0000 (09:38 +0000)] 
tools/env: Use a board-specific default env

Originally added in aa701b94336b358798d676eef12a7b90bdac23f5

Before this patch, there was a hard-coded env that was used as default
if the env in flash is detected as invalid.  Now this tool (compiled
for a given board) will share the default env with the u-boot for the
board.

Fix include of config.h

Need to define "TEXT_BASE" when building the fw_env tool so that the
default env will be correct for environments which use it.

Define __ASSEMBLY__ when calling #include <config.h> so that we only
get #defines (all we're interested in).

Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
11 years agocommon: cmd_bdinfo: fix type of value in print_lnum
Daniel Schwierzeck [Wed, 3 Oct 2012 08:36:11 +0000 (08:36 +0000)] 
common: cmd_bdinfo: fix type of value in print_lnum

This fixes a warning when compiling with ELDK-5.2.1 for MIPS64:

cmd_bdinfo.c: In function 'print_lnum':
cmd_bdinfo.c:56:2: warning: format '%llX' expects argument of type 'long long unsigned int', but argument 3 has type 'u64' [-Wformat]

Signed-off-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
11 years agoinput: Add debugging for key matrix key codes
Simon Glass [Thu, 27 Sep 2012 15:18:43 +0000 (15:18 +0000)] 
input: Add debugging for key matrix key codes

These are read from the fdt - add a debug feature to display the mapping
on start-up.

See that we get debug output listing the keycodes

Signed-off-by: Simon Glass <sjg@chromium.org>
11 years agoinput: Allow key ghosting filter to be disabled
Simon Glass [Thu, 27 Sep 2012 15:18:42 +0000 (15:18 +0000)] 
input: Allow key ghosting filter to be disabled

Some keyboards will not need a key ghosting filter, so make this feature
optional.

Signed-off-by: Simon Glass <sjg@chromium.org>
11 years agoinput: Separate out keyboard repeat/delay from init
Simon Glass [Thu, 27 Sep 2012 15:18:41 +0000 (15:18 +0000)] 
input: Separate out keyboard repeat/delay from init

It is inconvenient to have to specify the keyboard repeat and delay at
init time if it is not yet available, so move this into a separate
function.

Some drivers will want to do this when their keyboard init routine
is actually called.

Signed-off-by: Simon Glass <sjg@chromium.org>
11 years agoinput: Correct key_matrix fdt decoding
Simon Glass [Thu, 27 Sep 2012 15:18:40 +0000 (15:18 +0000)] 
input: Correct key_matrix fdt decoding

Some issues with this were not addressed in the previous series. Fix up
the binding decoding to deal with what is actually expected in the fdt.

This corrects the broken keyboard on seaboard.

Signed-off-by: Simon Glass <sjg@chromium.org>
11 years agotools: Add cleanpatch
Fabio Estevam [Fri, 28 Sep 2012 03:36:14 +0000 (03:36 +0000)] 
tools: Add cleanpatch

There are some errors reported by checkpatch.pl that can be easily cleaned up by
using the cleanpatch tool.

Import the cleanpatch script from linux kernel 3.5.4 stable version as from the
following commit:

commit cb3ed5b7e09c6c0462e396d55e3fecc0980a333a
Author: H. Peter Anvin <hpa@zytor.com>
Date:   Fri May 25 17:58:26 2007 -0700

    scripts: Make cleanfile/cleanpatch warn about long lines

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
11 years agopatman: Handle checkpatch.pl not providing file/line info
Simon Glass [Thu, 27 Sep 2012 15:33:46 +0000 (15:33 +0000)] 
patman: Handle checkpatch.pl not providing file/line info

Sometimes we don't get a valid filename or line number from checkpatch.pl,
for example if the patch is in a bad format. Deal with this by using a
default value, rather than a stack trace.

Signed-off-by: Simon Glass <sjg@chromium.org>
11 years agopatman: Support Series-name tag to name a series
Simon Glass [Thu, 27 Sep 2012 15:06:02 +0000 (15:06 +0000)] 
patman: Support Series-name tag to name a series

Sometimes it is possible to forget the name of the branch you used to
generate an upstream series. To assist with this, add an optional
patman does not use this.

Signed-off-by: Simon Glass <sjg@chromium.org>
11 years agoMAKEALL: add a -C/--check option to enable build checking
Kim Phillips [Thu, 27 Sep 2012 14:57:34 +0000 (14:57 +0000)] 
MAKEALL: add a -C/--check option to enable build checking

thanks to Tom Rini for the good idea.

Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
11 years agoadd check infrastructure, default sparse
Kim Phillips [Fri, 21 Sep 2012 12:28:17 +0000 (12:28 +0000)] 
add check infrastructure, default sparse

Add support for running source code checkers on u-boot source, e.g.,
using sparse to aid with typechecking.  This comes in especially
handy as SoC vendors mix and match cores and devices with different
endianness, thus here we add CHECK_ENDIAN to the otherwise linux
kernel default CHECKFLAGS.

Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
11 years agosata.h: Make all sata/ata drivers include <sata.h>
Pavel Herrmann [Thu, 27 Sep 2012 23:18:04 +0000 (23:18 +0000)] 
sata.h: Make all sata/ata drivers include <sata.h>

- block_dev_desc_t says that block_(read|write) take lbaint_t for blkcnt
  not ulong.
- We also move the extern of sata_dev_desc into <sata.h>
- Remove now duplicate declarations from driver-specific headers.

Signed-off-by: Tom Rini <trini@ti.com>
Signed-off-by: Pavel Herrmann <morpheus.ibis@gmail.com>
11 years agoide.h: Make ide_(read|write) match block_dev_desc_t block_(read|write)
Tom Rini [Sat, 29 Sep 2012 14:36:43 +0000 (07:36 -0700)] 
ide.h: Make ide_(read|write) match block_dev_desc_t block_(read|write)

block_dev_desc_t says that block_(read|write) take lbaint_t for blkcnt
not ulong

Signed-off-by: Tom Rini <trini@ti.com>
11 years agosil_sata: Make sata_write() comply with <part.h>
Tom Rini [Sat, 29 Sep 2012 14:57:25 +0000 (07:57 -0700)] 
sil_sata: Make sata_write() comply with <part.h>

sata_write() takes a const void as the last argument.  Fixing this means
we also need to make ata_low_level_rw_lba{28,48} also take a const void.

Signed-off-by: Tom Rini <trini@ti.com>
11 years agosata_dwc: Make sata_write() use const void, per <part.h>
Tom Rini [Sat, 29 Sep 2012 14:57:04 +0000 (07:57 -0700)] 
sata_dwc: Make sata_write() use const void, per <part.h>

Signed-off-by: Tom Rini <trini@ti.com>
11 years agopata_bfin: Make sata_{read,write}() comply with <part.h>
Tom Rini [Sat, 29 Sep 2012 14:56:31 +0000 (07:56 -0700)] 
pata_bfin: Make sata_{read,write}() comply with <part.h>

These functions take lbaint_t for blkcnt.

Signed-off-by: Tom Rini <trini@ti.com>
11 years agofsl_sata: Make sata_{read,write}() comply with <part.h>
Tom Rini [Sat, 29 Sep 2012 14:55:11 +0000 (07:55 -0700)] 
fsl_sata: Make sata_{read,write}() comply with <part.h>

- sata_write() takes a const void as the last argument.  Fixing this
  means we also need to make ata_low_level_rw_lba{28,48} also take a
  const void.
- Both sata_{read,write} take lbaint_t for blkcnt and ulong for blknr

Signed-off-by: Tom Rini <trini@ti.com>
11 years agodwc_ahsata: Make sata_write() comply with <part.h>
Tom Rini [Sat, 29 Sep 2012 14:53:06 +0000 (07:53 -0700)] 
dwc_ahsata: Make sata_write() comply with <part.h>

sata_write() takes a const void as the last argument.  Fixing this means
we also need to make ata_low_level_rw_lba{28,48} also take a const void.

Acked-by: Stefano Babic <sbabic@denx.de>
Signed-off-by: Tom Rini <trini@ti.com>
11 years agoata_piix: sata_write must take a const void argument.
Tom Rini [Sat, 29 Sep 2012 14:52:48 +0000 (07:52 -0700)] 
ata_piix: sata_write must take a const void argument.

Signed-off-by: Tom Rini <trini@ti.com>
11 years agoata_piix: Fix checkpatch issues
Tom Rini [Sat, 29 Sep 2012 14:35:12 +0000 (07:35 -0700)] 
ata_piix: Fix checkpatch issues

While in here also:
- Switch to debug from custom PRINTF for debugging.
- Use mdelay rather than custom msleep.

Signed-off-by: Tom Rini <trini@ti.com>
11 years agousb.h: Add udc_disconnect prototype to usb.h
Lukasz Dalek [Tue, 2 Oct 2012 15:04:33 +0000 (17:04 +0200)] 
usb.h: Add udc_disconnect prototype to usb.h

PXA25x gadget implements common function usb_disconnect().
This patch adds this function prototype into usb.h for boards using it.

Signed-off-by: Lukasz Dalek <luk0104@gmail.com>
11 years agopxa25x: Add support for USB ethernet gadget
Lukasz Dalek [Tue, 2 Oct 2012 15:04:32 +0000 (17:04 +0200)] 
pxa25x: Add support for USB ethernet gadget

Add to pxa25x based devices support for USB ethernet gadget. This is a
port of pxa25x UDC driver from Linux kernel.

Signed-off-by: Lukasz Dalek <luk0104@gmail.com>
11 years agousbether: Removed DEV_CONFIG_{CDC,SUBSET}
Lukasz Dalek [Tue, 2 Oct 2012 15:04:31 +0000 (17:04 +0200)] 
usbether: Removed DEV_CONFIG_{CDC,SUBSET}

Removed DEV_CONFIG_CDC and DEV_CONFIG_SUBSET and replaced it with
CONFIG_USB_ETH_CDC and CONFIG_USB_ETH_SUBSET.

Signed-off-by: Lukasz Dalek <luk0104@gmail.com>
11 years agousbether: Define CONFIG_USB_ETH_{CDC,SUBSET}
Lukasz Dalek [Tue, 2 Oct 2012 15:04:30 +0000 (17:04 +0200)] 
usbether: Define CONFIG_USB_ETH_{CDC,SUBSET}

Introduced CONFIG_USB_ETH_CDC and CONFIG_USB_ETH_SUBSET as preparation
for removal DEV_CONFIG_CDC and DEV_CONFIG_SUBSET

Signed-off-by: Lukasz Dalek <luk0104@gmail.com>
11 years agousbether: Fixed bug when using with PXA25X chips
Lukasz Dalek [Tue, 2 Oct 2012 15:04:29 +0000 (17:04 +0200)] 
usbether: Fixed bug when using with PXA25X chips

PXA25X chips don't support alternate settings so driver uses non-CDC
driver.
But only code defined between DEV_CONFIG_CDC signals that network is up.
This patch is fixing this bug by signaling that network is up after USB
SET_INTERFACE request.

Signed-off-by: Lukasz Dalek <luk0104@gmail.com>
11 years agotegra20: add USB ULPI init code
Lucas Stach [Sun, 30 Sep 2012 22:44:35 +0000 (00:44 +0200)] 
tegra20: add USB ULPI init code

This adds the required code to set up a ULPI USB port. It is
mostly a port of the Linux ULPI setup code with some tweaks
added for more correctness, discovered along the way of
debugging this.

To use this both CONFIG_USB_ULPI and CONFIG_USB_ULPI_VIEWPORT
have to be set in the board configuration file.

Signed-off-by: Lucas Stach <dev@lynxeye.de>
Acked-by: Igor Grinberg <grinberg@compulab.co.il>
11 years agousb: ulpi: add indicator configuration function
Lucas Stach [Sun, 30 Sep 2012 22:44:34 +0000 (00:44 +0200)] 
usb: ulpi: add indicator configuration function

Allows for easy configuration of the VBUS indicator related ULPI
config bits.

Also move the external indicator setup from ulpi_set_vbus() to
the new function.

Signed-off-by: Lucas Stach <dev@lynxeye.de>
Acked-by: Igor Grinberg <grinberg@compulab.co.il>
11 years agousb: ehci: don't print debug output
Lucas Stach [Thu, 27 Sep 2012 22:26:19 +0000 (00:26 +0200)] 
usb: ehci: don't print debug output

This is clearly some sort of debug output and should not
be printed during normal operation.

Signed-off-by: Lucas Stach <dev@lynxeye.de>
11 years agotegra20: port to new ehci interface
Lucas Stach [Tue, 25 Sep 2012 22:14:37 +0000 (00:14 +0200)] 
tegra20: port to new ehci interface

EHCI interface now supports more than one controller. Wire up our usb functions
to use this new interface.

Signed-off-by: Lucas Stach <dev@lynxeye.de>
11 years agousb: add support for multiple usb controllers
Lucas Stach [Tue, 25 Sep 2012 22:14:36 +0000 (00:14 +0200)] 
usb: add support for multiple usb controllers

Allows to initialize more than one USB controller at once.

v2: print message when controller stop fails

Signed-off-by: Lucas Stach <dev@lynxeye.de>
Reviewed-by: Marek Vasut <marex@denx.de>
11 years agousb: ehci: rework to take advantage of new lowlevel interface
Lucas Stach [Tue, 25 Sep 2012 22:14:35 +0000 (00:14 +0200)] 
usb: ehci: rework to take advantage of new lowlevel interface

Kill off ehci-core.h
It was used to specify some static controller data. To support more than
one controller being active at any time we have to carry the controller
data ourselfes. Change the ehci interface accordingly.

NOTE: OMAP implemented the ehci stuff a bit backwards and should be fixed
to do the same thing as other platforms. But the change for now is at least
compile clean.

Signed-off-by: Lucas Stach <dev@lynxeye.de>
Reviewed-by: Marek Vasut <marex@denx.de>
11 years agousb: lowlevel interface change to support multiple controllers
Lucas Stach [Tue, 25 Sep 2012 22:14:34 +0000 (00:14 +0200)] 
usb: lowlevel interface change to support multiple controllers

Carry an index in the lowlevel usb functions to make specify the
respective usb controller.

Also pass through an controller struct from lowlevel_init to the
creation of the root usb device of this controller.

Signed-off-by: Lucas Stach <dev@lynxeye.de>
Reviewed-by: Marek Vasut <marex@denx.de>
11 years agopmc405de and zeus: remove the env_ptr externs
Igor Grinberg [Fri, 28 Sep 2012 10:04:46 +0000 (12:04 +0200)] 
pmc405de and zeus: remove the env_ptr externs

The env_ptr is already declared in environment.h, so there is no need to
redeclare in board files (especially after including the environment.h)
Remove those declarations.

Signed-off-by: Igor Grinberg <grinberg@compulab.co.il>
Signed-off-by: Stefan Roese <sr@denx.de>
Acked-by: Matthias Fuchs <matthias.fuchs@esd.eu>
11 years agoppc4xx: Remove AP1000 board support
Stefan Roese [Wed, 19 Sep 2012 13:18:52 +0000 (15:18 +0200)] 
ppc4xx: Remove AP1000 board support

As the board seems to be unmaintained for some time, lets remove
the support in mainline completely.

Signed-off-by: Stefan Roese <sr@denx.de>
Cc: James MacAulay <james.macaulay@amirix.com>
Acked-by: Marek Vasut <marex@denx.de>
11 years agoppc4xx: Remove ML2 board support
Stefan Roese [Wed, 19 Sep 2012 13:18:51 +0000 (15:18 +0200)] 
ppc4xx: Remove ML2 board support

As the board seems to be unmaintained for some time, lets remove
the support in mainline completely.

Signed-off-by: Stefan Roese <sr@denx.de>
Cc: Peter De Schrijver <p2@mind.be>
Acked-by: Marek Vasut <marex@denx.de>
11 years agoppc4xx: Remove IOP480 support
Stefan Roese [Wed, 19 Sep 2012 12:33:52 +0000 (14:33 +0200)] 
ppc4xx: Remove IOP480 support

Since the IOP480 (PPC401/3 variant from PLX) is only used on 2
boards that are not actively maintained, lets remove support
for it completely. This way the ppc4xx code will get a bit cleaner.

Signed-off-by: Stefan Roese <sr@denx.de>
Acked-by: Matthias Fuchs <matthias.fuchs@esd.eu>
Acked-by: Marek Vasut <marex@denx.de>
11 years agoserial: Enhance the manual relocation
Marek Vasut [Sun, 16 Sep 2012 16:54:22 +0000 (18:54 +0200)] 
serial: Enhance the manual relocation

Enhance the manual relocation of drivers operations structure by
checking if the entries are NULL and increment them only if they
are not. This allows for setting any entry to NULL and it will
survive the manual relocation.

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>
11 years agoserial: Compile drivers/serial/serial.c by default
Marek Vasut [Fri, 14 Sep 2012 21:46:48 +0000 (23:46 +0200)] 
serial: Compile drivers/serial/serial.c by default

Compile drivers/serial/serial.c by default both into SPL and into
non-SPL builds, since CONFIG_SERIAL_MULTI is now the default state.
Also having common/serial.c in by default now, it's pointless to keep
-DCONFIG_SERIAL_MULTI in CPPFLAGS any longer, so remove it as well.

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>
11 years agoserial: Remove CONFIG_SERIAL_MULTI from remaining sources
Marek Vasut [Fri, 14 Sep 2012 21:45:51 +0000 (23:45 +0200)] 
serial: Remove CONFIG_SERIAL_MULTI from remaining sources

Remove the parts depending either on disabled CONFIG_SERIAL_MULTI
or ifdefs around CONFIG_SERIAL_MULTI parts since CONFIG_SERIAL_MULTI
is now enabled by default.

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>
11 years agoserial: Remove CONFIG_SERIAL_MULTI from serial drivers
Marek Vasut [Fri, 14 Sep 2012 21:44:09 +0000 (23:44 +0200)] 
serial: Remove CONFIG_SERIAL_MULTI from serial drivers

Remove the support for not-CONFIG_SERIAL_MULTI part from serial
port drivers and some board files. Since CONFIG_SERIAL_MULTI is
now enabled by default, that part is a dead code. Remove it.

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Marek Vasut <marek.vasut@gmail.com>
Cc: Anatolij Gustschin <agust@denx.de>
Cc: Stefan Roese <sr@denx.de>
Signed-off-by: Tom Rini <trini@ti.com>
11 years agoserial: Remove CONFIG_SERIAL_MULTI from config files
Marek Vasut [Fri, 14 Sep 2012 21:39:52 +0000 (23:39 +0200)] 
serial: Remove CONFIG_SERIAL_MULTI from config files

Remove any notion of CONFIG_SERIAL_MULTI from board config files.
Since CONFIG_SERIAL_MULTI is now enabled by default, it is useless
to specify this config option in the board config files. Therefore
remove it.

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Marek Vasut <marek.vasut@gmail.com>
Cc: Anatolij Gustschin <agust@denx.de>
Cc: Stefan Roese <sr@denx.de>
Signed-off-by: Tom Rini <trini@ti.com>
11 years agoserial: Unconditionally enable CONFIG_SERIAL_MULTI
Marek Vasut [Fri, 14 Sep 2012 21:20:05 +0000 (23:20 +0200)] 
serial: Unconditionally enable CONFIG_SERIAL_MULTI

Enable CONFIG_SERIAL_MULTI for all builds of U-Boot. That includes
both SPL builds and non-SPL builds, everything. To avoid poluting
this patch with removal of ifdef-endif constructions containing
CONFIG_SERIAL_MULTI, the CONFIG_SERIAL_MULTI is temporarily added
into CPPFLAGS in config.mk . This will be again removed in following
patch.

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Marek Vasut <marek.vasut@gmail.com>
Cc: Tom Rini <trini@ti.com>
11 years agoserial: Move common/serial.c to drivers/serial/
Marek Vasut [Sat, 29 Sep 2012 16:16:28 +0000 (18:16 +0200)] 
serial: Move common/serial.c to drivers/serial/

Move the common/serial.c into driver/serial/, since this file
provides serial multiplexing functions and it is imperative to
be linked with libserial.o instead of libcommon.o.

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Marek Vasut <marek.vasut@gmail.com>
Cc: Tom Rini <trini@ti.com>
11 years agoserial: ns16550: Rename serial.c to serial_ns16550.c
Marek Vasut [Sat, 29 Sep 2012 16:12:47 +0000 (18:12 +0200)] 
serial: ns16550: Rename serial.c to serial_ns16550.c

This serial driver had wrong name of the source file for some time
now. The name of the driver was serial.c instead of any more logical
and fitting name. Thus, rename the driver source file to serial_ns16550.c
and be done with it.

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>
11 years agoserial: ns16550: Call usbtty_poll only in non-SPL build
Marek Vasut [Sat, 15 Sep 2012 08:25:19 +0000 (10:25 +0200)] 
serial: ns16550: Call usbtty_poll only in non-SPL build

Having both USBTTY and CONFIG_SERIAL_MULTI enabled in SPL, the
usbtty.c file is protected in Makefile to not be compiled into
the SPL. Yet, the ns16550 serial driver does not contain such
protection. Add it to avoid missing symbol error.

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Marek Vasut <marek.vasut@gmail.com>
Cc: Tom Rini <trini@ti.com>
11 years agoserial: Use puts() and hang() instead of panic() in SPL
Marek Vasut [Sat, 15 Sep 2012 08:33:51 +0000 (10:33 +0200)] 
serial: Use puts() and hang() instead of panic() in SPL

If case the get_current() call fails before relocation, the U-Boot
must try to print an error message, fail and either reset or halt.
Such error is critical enough to halt the system, as it means the
system is in very bad state.

This is now also used in SPL, since CONFIG_SERIAL_MULTI is enabled
unconditionally. To avoid compiling whole vsprintf.c into SPL, use
puts() to print error message and hang() to stop the system in case
of SPL build.

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Marek Vasut <marek.vasut@gmail.com>
Cc: Tom Rini <trini@ti.com>
11 years agoserial: mxs: spl: Remove empty serial_* functions from SPL code
Marek Vasut [Fri, 14 Sep 2012 21:18:08 +0000 (23:18 +0200)] 
serial: mxs: spl: Remove empty serial_* functions from SPL code

Remove the empty bodies from serial_* functions from MXS SPL code.
These empty implementations are now in common/serial.c instead so
declaring them also in the SPL code would cause a colision once
serial multi is enabled unconditionally.

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Marek Vasut <marek.vasut@gmail.com>
Cc: Tom Rini <trini@ti.com>
Cc: Stefano Babic <sbabic@denx.de>
11 years agoserial: sh: Implement CONFIG_SERIAL_MULTI into sh serial driver
Marek Vasut [Fri, 14 Sep 2012 20:40:08 +0000 (22:40 +0200)] 
serial: sh: Implement CONFIG_SERIAL_MULTI into sh serial driver

Implement support for CONFIG_SERIAL_MULTI into sh 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 sh 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: Phil Edworthy <PHIL.EDWORTHY@renesas.com>
Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Signed-off-by: Tom Rini <trini@ti.com>
11 years agoserial: arm: Implement CONFIG_SERIAL_MULTI into sa1100 serial driver
Marek Vasut [Fri, 14 Sep 2012 20:39:44 +0000 (22:39 +0200)] 
serial: arm: Implement CONFIG_SERIAL_MULTI into sa1100 serial driver

Implement support for CONFIG_SERIAL_MULTI into sa1100 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 sa1100 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>
11 years agoserial: arm: Implement CONFIG_SERIAL_MULTI into s3c44b0 serial driver
Marek Vasut [Fri, 14 Sep 2012 20:39:19 +0000 (22:39 +0200)] 
serial: arm: Implement CONFIG_SERIAL_MULTI into s3c44b0 serial driver

Implement support for CONFIG_SERIAL_MULTI into s3c44b0 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 s3c44b0 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>
11 years agoserial: arm: Implement CONFIG_SERIAL_MULTI into pl01x serial driver
Marek Vasut [Fri, 14 Sep 2012 20:38:46 +0000 (22:38 +0200)] 
serial: arm: Implement CONFIG_SERIAL_MULTI into pl01x serial driver

Implement support for CONFIG_SERIAL_MULTI into pl01x 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 pl01x 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: Stefano Babic <sbabic@denx.de>
Cc: Mathieu J. Poirier <mathieu.poirier@linaro.org>
Cc: Linus Walleij <linus.walleij@linaro.org>
Cc: John Rigby <john.rigby@linaro.org>
Cc: Rabin Vincent <rabin.vincent@stericsson.com>
11 years agoserial: arm: Implement CONFIG_SERIAL_MULTI into netarm serial driver
Marek Vasut [Fri, 14 Sep 2012 20:38:09 +0000 (22:38 +0200)] 
serial: arm: Implement CONFIG_SERIAL_MULTI into netarm serial driver

Implement support for CONFIG_SERIAL_MULTI into netarm 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 netarm 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: Stefano Babic <sbabic@denx.de>
11 years agoserial: arm: Implement CONFIG_SERIAL_MULTI into mxc serial driver
Marek Vasut [Fri, 14 Sep 2012 20:37:43 +0000 (22:37 +0200)] 
serial: arm: Implement CONFIG_SERIAL_MULTI into mxc serial driver

Implement support for CONFIG_SERIAL_MULTI into mxc 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 mxc 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: Stefano Babic <sbabic@denx.de>
11 years agoserial: Implement CONFIG_SERIAL_MULTI into max3100 serial driver
Marek Vasut [Fri, 14 Sep 2012 20:37:17 +0000 (22:37 +0200)] 
serial: Implement CONFIG_SERIAL_MULTI into max3100 serial driver

Implement support for CONFIG_SERIAL_MULTI into max3100 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 max3100 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>
11 years agoserial: arm: Implement CONFIG_SERIAL_MULTI into lpc2292 serial driver
Marek Vasut [Fri, 14 Sep 2012 20:36:50 +0000 (22:36 +0200)] 
serial: arm: Implement CONFIG_SERIAL_MULTI into lpc2292 serial driver

Implement support for CONFIG_SERIAL_MULTI into lpc2292 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 lpc2292 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>
11 years agoserial: arm: Implement CONFIG_SERIAL_MULTI into lh7a40x serial driver
Marek Vasut [Fri, 14 Sep 2012 20:36:27 +0000 (22:36 +0200)] 
serial: arm: Implement CONFIG_SERIAL_MULTI into lh7a40x serial driver

Implement support for CONFIG_SERIAL_MULTI into lh7a40x 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 lh7a40x 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>
11 years agoserial: arm: Implement CONFIG_SERIAL_MULTI into ks8695 serial driver
Marek Vasut [Fri, 14 Sep 2012 20:35:43 +0000 (22:35 +0200)] 
serial: arm: Implement CONFIG_SERIAL_MULTI into ks8695 serial driver

Implement support for CONFIG_SERIAL_MULTI into ks8695 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 ks8695 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>
11 years agoserial: arm: Implement CONFIG_SERIAL_MULTI into ixp serial driver
Marek Vasut [Fri, 14 Sep 2012 20:35:14 +0000 (22:35 +0200)] 
serial: arm: Implement CONFIG_SERIAL_MULTI into ixp serial driver

Implement support for CONFIG_SERIAL_MULTI into ixp 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 ixp 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: Michael Schwingen <michael@schwingen.org>
11 years agoserial: arm: Implement CONFIG_SERIAL_MULTI into imx serial driver
Marek Vasut [Fri, 14 Sep 2012 20:34:51 +0000 (22:34 +0200)] 
serial: arm: Implement CONFIG_SERIAL_MULTI into imx serial driver

Implement support for CONFIG_SERIAL_MULTI into imx 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 imx 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: Stefano Babic <sbabic@denx.de>
11 years agoserial: arm: Implement CONFIG_SERIAL_MULTI into clps7111 serial driver
Marek Vasut [Fri, 14 Sep 2012 20:34:22 +0000 (22:34 +0200)] 
serial: arm: Implement CONFIG_SERIAL_MULTI into clps7111 serial driver

Implement support for CONFIG_SERIAL_MULTI into clps7111 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 clps7111 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>
11 years agoserial: sandbox: Implement CONFIG_SERIAL_MULTI into sandbox serial driver
Marek Vasut [Fri, 14 Sep 2012 20:33:21 +0000 (22:33 +0200)] 
serial: sandbox: Implement CONFIG_SERIAL_MULTI into sandbox serial driver

Implement support for CONFIG_SERIAL_MULTI into sandbox 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 sandbox 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: Mike Frysinger <vapier@gentoo.org>
11 years agoserial: arm: Implement CONFIG_SERIAL_MULTI into s3c64xx serial driver
Marek Vasut [Thu, 13 Sep 2012 14:53:49 +0000 (16:53 +0200)] 
serial: arm: Implement CONFIG_SERIAL_MULTI into s3c64xx serial driver

Implement support for CONFIG_SERIAL_MULTI into s3c64xx 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 s3c64xx 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: John Rigby <john.rigby@linaro.org>
Cc: Minkyu Kang <mk7.kang@samsung.com>
11 years agoserial: arm: Implement CONFIG_SERIAL_MULTI into s3c4510b serial driver
Marek Vasut [Thu, 13 Sep 2012 14:53:15 +0000 (16:53 +0200)] 
serial: arm: Implement CONFIG_SERIAL_MULTI into s3c4510b serial driver

Implement support for CONFIG_SERIAL_MULTI into s3c4510b 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 s3c4510b 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>
11 years agoserial: oc: Implement CONFIG_SERIAL_MULTI into OpenCores serial driver
Marek Vasut [Thu, 13 Sep 2012 14:52:38 +0000 (16:52 +0200)] 
serial: oc: Implement CONFIG_SERIAL_MULTI into OpenCores serial driver

Implement support for CONFIG_SERIAL_MULTI into OpenCores 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 OpenCores 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: Scott McNutt <smcnutt@psyent.com>
11 years agoserial: Implement CONFIG_SERIAL_MULTI into ns9750 serial driver
Marek Vasut [Thu, 13 Sep 2012 14:52:07 +0000 (16:52 +0200)] 
serial: Implement CONFIG_SERIAL_MULTI into ns9750 serial driver

Implement support for CONFIG_SERIAL_MULTI into ns9750 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 ns9750 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>
11 years agoserial: mcf: Implement CONFIG_SERIAL_MULTI into MCF serial driver
Marek Vasut [Thu, 13 Sep 2012 14:51:38 +0000 (16:51 +0200)] 
serial: mcf: Implement CONFIG_SERIAL_MULTI into MCF serial driver

Implement support for CONFIG_SERIAL_MULTI into MCF 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 MCF 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: TsiChung Liew <tsicliew@gmail.com>
11 years agoserial: arm: Implement CONFIG_SERIAL_MULTI into lpc32xx serial driver
Marek Vasut [Thu, 13 Sep 2012 14:51:02 +0000 (16:51 +0200)] 
serial: arm: Implement CONFIG_SERIAL_MULTI into lpc32xx serial driver

Implement support for CONFIG_SERIAL_MULTI into lpc32xx 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 lpc32xx 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: Vladimir Zapolskiy <vz@mleia.com>
11 years agoserial: arm: Implement CONFIG_SERIAL_MULTI into atmel serial driver
Marek Vasut [Thu, 13 Sep 2012 14:50:30 +0000 (16:50 +0200)] 
serial: arm: Implement CONFIG_SERIAL_MULTI into atmel serial driver

Implement support for CONFIG_SERIAL_MULTI into atmel 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 atmel 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: Xu, Hong <Hong.Xu@atmel.com>
11 years agoserial: arm: Implement CONFIG_SERIAL_MULTI into altera serial driver
Marek Vasut [Thu, 13 Sep 2012 14:49:51 +0000 (16:49 +0200)] 
serial: arm: Implement CONFIG_SERIAL_MULTI into altera serial driver

Implement support for CONFIG_SERIAL_MULTI into altera 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 altera 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: Scott McNutt <smcnutt@psyent.com>
11 years agoserial: arm: Implement CONFIG_SERIAL_MULTI into altera_jtag serial driver
Marek Vasut [Thu, 13 Sep 2012 14:48:50 +0000 (16:48 +0200)] 
serial: arm: Implement CONFIG_SERIAL_MULTI into altera_jtag serial driver

Implement support for CONFIG_SERIAL_MULTI into altera_jtag 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 altera_jtag 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: Thomas Chou <thomas@wytron.com.tw>
11 years agoserial: powerpc: Implement CONFIG_SERIAL_MULTI into p3mx serial driver
Marek Vasut [Thu, 13 Sep 2012 10:35:54 +0000 (12:35 +0200)] 
serial: powerpc: Implement CONFIG_SERIAL_MULTI into p3mx serial driver

Implement support for CONFIG_SERIAL_MULTI into p3mx 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 p3mx 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: Anatolij Gustschin <agust@denx.de>
Cc: Stefan Roese <sr@denx.de>
11 years agoserial: powerpc: Implement CONFIG_SERIAL_MULTI into sconsole serial driver
Marek Vasut [Thu, 13 Sep 2012 10:34:49 +0000 (12:34 +0200)] 
serial: powerpc: Implement CONFIG_SERIAL_MULTI into sconsole serial driver

Implement support for CONFIG_SERIAL_MULTI into sconsole 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 sconsole 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: Anatolij Gustschin <agust@denx.de>
Cc: Stefan Roese <sr@denx.de>
11 years agoserial: powerpc: Implement CONFIG_SERIAL_MULTI into ml2 serial driver
Marek Vasut [Thu, 13 Sep 2012 10:34:24 +0000 (12:34 +0200)] 
serial: powerpc: Implement CONFIG_SERIAL_MULTI into ml2 serial driver

Implement support for CONFIG_SERIAL_MULTI into ml2 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 ml2 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: Anatolij Gustschin <agust@denx.de>
Cc: Stefan Roese <sr@denx.de>
11 years agoserial: powerpc: Implement CONFIG_SERIAL_MULTI into evb64260 serial driver
Marek Vasut [Thu, 13 Sep 2012 10:33:50 +0000 (12:33 +0200)] 
serial: powerpc: Implement CONFIG_SERIAL_MULTI into evb64260 serial driver

Implement support for CONFIG_SERIAL_MULTI into evb64260 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 evb64260 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: Anatolij Gustschin <agust@denx.de>
Cc: Stefan Roese <sr@denx.de>
11 years agoserial: powerpc: Implement CONFIG_SERIAL_MULTI into cpci750 serial driver
Marek Vasut [Thu, 13 Sep 2012 10:32:56 +0000 (12:32 +0200)] 
serial: powerpc: Implement CONFIG_SERIAL_MULTI into cpci750 serial driver

Implement support for CONFIG_SERIAL_MULTI into cpci750 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 cpci750 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: Anatolij Gustschin <agust@denx.de>
Cc: Stefan Roese <sr@denx.de>
11 years agoserial: powerpc: Implement CONFIG_SERIAL_MULTI into cogent serial driver
Marek Vasut [Thu, 13 Sep 2012 10:29:31 +0000 (12:29 +0200)] 
serial: powerpc: Implement CONFIG_SERIAL_MULTI into cogent serial driver

Implement support for CONFIG_SERIAL_MULTI into cogent 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 cogent 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: Anatolij Gustschin <agust@denx.de>
Cc: Stefan Roese <sr@denx.de>
11 years agoserial: powerpc: Implement CONFIG_SERIAL_MULTI into bmw serial driver
Marek Vasut [Thu, 13 Sep 2012 10:28:07 +0000 (12:28 +0200)] 
serial: powerpc: Implement CONFIG_SERIAL_MULTI into bmw serial driver

Implement support for CONFIG_SERIAL_MULTI into bmw 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 bmw 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: Anatolij Gustschin <agust@denx.de>
Cc: Stefan Roese <sr@denx.de>
11 years agoserial: powerpc: Implement CONFIG_SERIAL_MULTI into amirix serial driver
Marek Vasut [Thu, 13 Sep 2012 10:27:37 +0000 (12:27 +0200)] 
serial: powerpc: Implement CONFIG_SERIAL_MULTI into amirix serial driver

Implement support for CONFIG_SERIAL_MULTI into amirix 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 amirix 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: Anatolij Gustschin <agust@denx.de>
Cc: Stefan Roese <sr@denx.de>
11 years agoserial: powerpc: Implement CONFIG_SERIAL_MULTI into marvell serial driver
Marek Vasut [Thu, 13 Sep 2012 10:26:39 +0000 (12:26 +0200)] 
serial: powerpc: Implement CONFIG_SERIAL_MULTI into marvell serial driver

Implement support for CONFIG_SERIAL_MULTI into marvell 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 marvell 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: Anatolij Gustschin <agust@denx.de>
Cc: Stefan Roese <sr@denx.de>
11 years agoserial: sparc: Implement CONFIG_SERIAL_MULTI into leon3 serial driver
Marek Vasut [Thu, 13 Sep 2012 10:25:48 +0000 (12:25 +0200)] 
serial: sparc: Implement CONFIG_SERIAL_MULTI into leon3 serial driver

Implement support for CONFIG_SERIAL_MULTI into leon3 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 leon3 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: Peter Tyser <ptyser@xes-inc.com>
11 years agoserial: sparc: Implement CONFIG_SERIAL_MULTI into leon2 serial driver
Marek Vasut [Thu, 13 Sep 2012 10:25:07 +0000 (12:25 +0200)] 
serial: sparc: Implement CONFIG_SERIAL_MULTI into leon2 serial driver

Implement support for CONFIG_SERIAL_MULTI into leon2 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 leon2 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: Peter Tyser <ptyser@xes-inc.com>
11 years agoserial: powerpc: Implement CONFIG_SERIAL_MULTI into iop480 serial driver
Marek Vasut [Wed, 12 Sep 2012 23:40:33 +0000 (01:40 +0200)] 
serial: powerpc: Implement CONFIG_SERIAL_MULTI into iop480 serial driver

Implement support for CONFIG_SERIAL_MULTI into iop480 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 iop480 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: Anatolij Gustschin <agust@denx.de>
Cc: Stefan Roese <sr@denx.de>
11 years agoserial: powerpc: Implement CONFIG_SERIAL_MULTI into mpc85xx serial driver
Marek Vasut [Wed, 12 Sep 2012 23:38:52 +0000 (01:38 +0200)] 
serial: powerpc: Implement CONFIG_SERIAL_MULTI into mpc85xx serial driver

Implement support for CONFIG_SERIAL_MULTI into mpc85xx 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 mpc85xx 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: Anatolij Gustschin <agust@denx.de>
Cc: Stefan Roese <sr@denx.de>
11 years agoserial: powerpc: Implement CONFIG_SERIAL_MULTI into mpc8260 serial drivers
Marek Vasut [Wed, 12 Sep 2012 23:34:16 +0000 (01:34 +0200)] 
serial: powerpc: Implement CONFIG_SERIAL_MULTI into mpc8260 serial drivers

Implement support for CONFIG_SERIAL_MULTI into both SCC and SMC mpc8260
serial drivers. These drivers were 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 mpc8260 drivers. 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: Anatolij Gustschin <agust@denx.de>
Cc: Stefan Roese <sr@denx.de>
11 years agoserial: powerpc: Implement CONFIG_SERIAL_MULTI into mpc8220 serial driver
Marek Vasut [Wed, 12 Sep 2012 23:29:31 +0000 (01:29 +0200)] 
serial: powerpc: Implement CONFIG_SERIAL_MULTI into mpc8220 serial driver

Implement support for CONFIG_SERIAL_MULTI into mpc8220 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 mpc8220 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: Anatolij Gustschin <agust@denx.de>
Cc: Stefan Roese <sr@denx.de>
11 years agoserial: powerpc: Implement CONFIG_SERIAL_MULTI into mpc5xx serial driver
Marek Vasut [Wed, 12 Sep 2012 23:26:42 +0000 (01:26 +0200)] 
serial: powerpc: Implement CONFIG_SERIAL_MULTI into mpc5xx serial driver

Implement support for CONFIG_SERIAL_MULTI into mpc5xx 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 mpc5xx 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: Anatolij Gustschin <agust@denx.de>
Cc: Stefan Roese <sr@denx.de>
11 years agoserial: mips: Implement CONFIG_SERIAL_MULTI into JZ serial driver
Marek Vasut [Wed, 12 Sep 2012 23:20:59 +0000 (01:20 +0200)] 
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>
11 years agoserial: mips: Implement CONFIG_SERIAL_MULTI into asc serial driver
Marek Vasut [Wed, 12 Sep 2012 23:20:07 +0000 (01:20 +0200)] 
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>
11 years agoserial: mips: Implement CONFIG_SERIAL_MULTI into au1x00 serial driver
Marek Vasut [Wed, 12 Sep 2012 23:16:50 +0000 (01:16 +0200)] 
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>
11 years agoserial: bfin: Flip the jtag serial console to CONFIG_SERIAL_MULTI
Marek Vasut [Wed, 12 Sep 2012 22:02:54 +0000 (00:02 +0200)] 
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>
11 years agoserial: zoom2: Remove zoom2 serial prototypes from serial.h
Marek Vasut [Wed, 12 Sep 2012 18:15:06 +0000 (20:15 +0200)] 
serial: zoom2: Remove zoom2 serial prototypes from serial.h

Remove the prototypes for zoom2_serial_deviceN from serial.h . This
can't be done right away, as they are referenced from the zoom2
config file. Therefore, adjust the code so the config file only
specifies number of the port. Then, replace the simple return in
default_serial_console() with a switch across possible values, which
returns the zoom2_serial_deviceN . With such adjustment in place,
the exported prototypes in serial.h can be safely removed.

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Marek Vasut <marek.vasut@gmail.com>
Cc: Tom Rini <trini@ti.com>
11 years agoserial: bfin: Adjust serial_register_bfin_uart()
Marek Vasut [Wed, 12 Sep 2012 18:07:54 +0000 (20:07 +0200)] 
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>
11 years agoserial: bfin: Remove the bfin_serialN_device exports from serial.h
Marek Vasut [Wed, 12 Sep 2012 18:05:13 +0000 (20:05 +0200)] 
serial: bfin: Remove the bfin_serialN_device exports from serial.h

Remove the exports from serial.h as they are only used in the blackfin
serial driver. Furthermore, they are only used for registration, which
is handled already inside that driver and default_serial_port() call,
which is also handled in that driver.

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>