This patch adds pinumx support for SROMC.
Signed-off-by: Jeong-Hyeon Kim
---
arch/arm/cpu/armv7/exynos/pinmux.c | 77
1 file changed, 77 insertions(+)
diff --git a/arch/arm/cpu/armv7/exynos/pinmux.c
b/arch/arm/cpu/armv7/exynos/pinmux.c
index d778b46..cdd6
A friend of mine (who is more of a low-level hardware guy) is trying to
put together a project based on the NXP lpc3130 processor, and asked me
to help him out. I've got a reasonable OS/development background, but
not much of any experience in the embedded realm, so apologies in
advance for any
All,
My question stems from building a "standalone" application for U-Boot
with code that has conflicting licenses with GPL v2. The COPYING file
states that if I used the standard jump table then the standalone
application will not fall under GPL v2. However if I want to expand
the functionality
On 13 December 2012 11:49, Chander Kashyap wrote:
> Dear Kim,
>
> On 12 December 2012 13:24, Jeong Hyeon Kim wrote:
>> From: Jeong-Hyeon Kim
>>
>> This patch adds the support for Exynos4212/4412.
>>
>> Samsung's ARM Cortex-A9 based Exynos4x12 SoCs and Exynos4210 are similar.
>> Address of a few
Dear Kim,
On 12 December 2012 13:24, Jeong Hyeon Kim wrote:
> From: Jeong-Hyeon Kim
>
> This patch adds the support for Exynos4212/4412.
>
> Samsung's ARM Cortex-A9 based Exynos4x12 SoCs and Exynos4210 are similar.
> Address of a few registers are different in CMU part like MPLL.
>
> Signed-off-
On 12/12/2012 4:55 PM, Marek Vasut wrote:
Dear Vipin Kumar,
+ ulong start = get_timer(0);
+
+ do {
+ ret = usb_get_port_status(dev, i + 1, portsts);
+ if (ret< 0) {
+ USB_HUB_PRINTF("get_port
[...]
README | 3 +-
common/cmd_bootm.c | 133
-
2 files changed, 134 insertions(+), 2 deletions(-)
diff --git a/README b/README
index 2077c3b..ec5c31e 100644
--- a/README
+++ b/README
@@ -831,7 +831,8 @@ The following opti
On 12/13/2012 1:54 AM, Wolfgang Denk wrote:
Dear Vipin Kumar,
In
message
you wrote:
imls does not list the images in NAND devices. This patch implements this
support for legacy type images.
...
-static int do_imls(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
+static void do_i
On 12/12/12 23:02, Kyungmin Park wrote:
> Hi,
>
> On Tue, Dec 11, 2012 at 8:01 PM, Ajay Kumar wrote:
>> This patch adds pinmux configuration for backlight, LCD reset
>> and HPD for DP panel on Exynos5 SMDK.
>>
>> Signed-off-by: Ajay Kumar
>> ---
>> arch/arm/cpu/armv7/exynos/pinmux.c|
From: Patrick Georgi
Interrupt transfers aren't meant to be used from the async list
(the EHCI spec indicates trouble with low/full-speed intr on async).
Build a periodic list instead, and provide an API to make use of it.
Then, use that API from the existing interrupt transfer API.
This provid
Enable PCI EHCI, storage, keyboard and Ethernet for USB.
Signed-off-by: Simon Glass
---
include/configs/coreboot.h | 17 +
1 files changed, 17 insertions(+), 0 deletions(-)
diff --git a/include/configs/coreboot.h b/include/configs/coreboot.h
index adeace0..79adbc0 100644
--- a
From: Vincent Palatin
The interrupt endpoint handling code stores the buffer pointer in the QH
padding field. We need to make it the size of a pointer to avoid strict
aliasing issue with the compiler.
Signed-off-by: Vincent Palatin
Signed-off-by: Simon Glass
---
drivers/usb/host/ehci.h |
The Asix driver takes the link down during init() and then brings it back up.
This commit changes this so that if a link has already been established
successfully we simply check that the link is still good.
Also fix up asix_halt() to actually halt RX on the interface. Previously this
was not done
From: Milind Choudhary
If probe of a newly connected device fails for some reason, clean up
the allocated entry in usb_dev array.
Signed-off-by: Milind Choudhary
Signed-off-by: Simon Glass
---
common/usb.c | 12
common/usb_hub.c |2 ++
include/usb.h|1 +
3 files
From: Michael Spang
[port of Linux kernel commit bcd218be5aeb by Steve Glendinning]
The eeprom read & write commands currently check the E2P_CMD_LOADED_ bit is
set before allowing any operations. This prevents any reading or writing
unless a correctly programmed EEPROM is installed.
Signed-off
From: Vincent Palatin
Ensure we cannot get stuck in the keyboard scanning if something wrong
happens (USB device unplugged or fatal I/O error)
Signed-off-by: Vincent Palatin
Signed-off-by: Simon Glass
---
drivers/usb/host/ehci-hcd.c | 18 --
1 files changed, 16 insertions(+
From: Vincent Palatin
When a USB card reader is empty, it will return "Not Ready - medium not
present" as Key Code Qualifier. In that situation, it's useless waiting
for the full timeout since the result won't change until the user
inserts a card.
Signed-off-by: Vincent Palatin
Signed-off-by: V
From: Vincent Palatin
On EHCI controller with 64-bit address space support, we must initialize
properly the high word for the PCI bus master accesses.
Signed-off-by: Vincent Palatin
Signed-off-by: Simon Glass
---
drivers/usb/host/ehci-hcd.c |3 +++
1 files changed, 3 insertions(+), 0 dele
From: Vincent Palatin
Use the ability to have several active EHCI controller on a system
in the PCI EHCI controller implementation.
Signed-off-by: Simon Glass
---
drivers/usb/host/ehci-pci.c | 24 +++-
1 files changed, 15 insertions(+), 9 deletions(-)
diff --git a/driver
From: Vincent Palatin
Instead of hardcoding the PCI IDs on the USB controller, use the PCI
class to detect them.
Ensure the busmaster bit is properly set in the PCI configuration.
Signed-off-by: Simon Glass
---
drivers/usb/host/ehci-pci.c | 37 +
1 files
This series adds a few USB improvements for Marek:
- Support for interupt transfers
- Faster start-up and proper shutdown of ASIX USB adapter
- Basic 64-bit controller support (used by x86)
- Fix detection of empty USB media readers
- Clean up after device configuration failure
Michael Spang (1)
Hi Stephen,
On Wed, Dec 12, 2012 at 3:52 PM, Stephen Warren wrote:
> On 12/12/2012 04:38 PM, Simon Glass wrote:
>> Hi Stephen,
>>
>> On Wed, Dec 12, 2012 at 3:23 PM, Stephen Warren
>> wrote:
>>> From: Stephen Warren
>>>
>>> A single U-Boot binary may support multiple very similar boards. These
On 12/12/2012 04:38 PM, Simon Glass wrote:
> Hi Stephen,
>
> On Wed, Dec 12, 2012 at 3:23 PM, Stephen Warren wrote:
>> From: Stephen Warren
>>
>> A single U-Boot binary may support multiple very similar boards. These
>> boards may use different UARTs for the main debug console. Hence, it is
>> i
Hi,
Thanks.
I set assign to you in patchwork. But first, this was set to me.
Best regards,
Nobuhiro
On Wed, Dec 12, 2012 at 4:23 PM, Joe Hershberger
wrote:
> Hi
>
> On Wed, Dec 12, 2012 at 12:37 AM, Nobuhiro Iwamatsu
> wrote:
>> Hi, Joe.
>>
>> Please pick this patch for your repository.
>
>
Hi Stephen,
On Wed, Dec 12, 2012 at 3:23 PM, Stephen Warren wrote:
> From: Stephen Warren
>
> A single U-Boot binary may support multiple very similar boards. These
> boards may use different UARTs for the main debug console. Hence, it is
> impossible to #define CONFIG_SYS_NS16550_COM1 to some s
Hi Wolfgang,
On Wed, Dec 12, 2012 at 2:11 PM, Wolfgang Denk wrote:
> Dear Simon Glass,
>
> In message
> you
> wrote:
>>
>> > Also, this should not be considered as somethin board specific as the
>> > name "board polling function" might suggest. What is being discussed
>> > here is not more an
From: Stephen Warren
A single U-Boot binary may support multiple very similar boards. These
boards may use different UARTs for the main debug console. Hence, it is
impossible to #define CONFIG_SYS_NS16550_COM1 to some static UART
address, since the true value may only be determined at run-time, a
Simon,
On Wed, Dec 12, 2012 at 3:40 PM, Simon Glass wrote:
> Hi Tom,
>
> On Tue, Dec 11, 2012 at 7:05 PM, Allen Martin wrote:
>> On Tue, Dec 11, 2012 at 03:34:11PM -0800, Tom Warren wrote:
>>> This patch series adds basic (boot to cmd prompt) support for Tegra30.
>>> This is based on the Tegra20
Stephen,
On Wed, Dec 12, 2012 at 3:10 PM, Stephen Warren wrote:
> On 12/11/2012 04:34 PM, Tom Warren wrote:
>> These are stripped down for bringup, They'll be filled out later
>> to match-up with the kernel DT contents, and/or as devices are
>> brought up (mmc, usb, spi, etc.).
>
>> diff --git a/
Stephen,
On Wed, Dec 12, 2012 at 3:06 PM, Stephen Warren wrote:
> On 12/12/2012 09:14 AM, Tom Warren wrote:
>> Allen,
>>
>> On Tue, Dec 11, 2012 at 5:45 PM, Allen Martin wrote:
>>> On Tue, Dec 11, 2012 at 03:34:15PM -0800, Tom Warren wrote:
These files are used by both SPL and main U-Boot.
Stephen,
On Wed, Dec 12, 2012 at 3:02 PM, Stephen Warren wrote:
> On 12/12/2012 09:23 AM, Tom Warren wrote:
>> Stephen,
>>
>> On Tue, Dec 11, 2012 at 5:36 PM, Stephen Warren
>> wrote:
>>> On 12/11/2012 04:34 PM, Tom Warren wrote:
Common Tegra files are in arch-tegra, shared between T20 and
On 12/12/2012 03:20:24 AM, Vipin Kumar wrote:
imls does not list the images in NAND devices. This patch implements
this
support for legacy type images.
Signed-off-by: Vipin Kumar
---
Hello Scott,
There has been sometime since you reviewed the first version of this
patch.
http://lists.denx
Hi Tom,
On Tue, Dec 11, 2012 at 7:05 PM, Allen Martin wrote:
> On Tue, Dec 11, 2012 at 03:34:11PM -0800, Tom Warren wrote:
>> This patch series adds basic (boot to cmd prompt) support for Tegra30.
>> This is based on the Tegra20 SPL, which initializes the AVP (ARM7TDMI)
>> boot proc) first, then
Hi Jagan,
On Wed, Dec 12, 2012 at 8:52 AM, Jagan Teki wrote:
> Hi Simon,
>
> On Wed, Dec 12, 2012 at 12:11 PM, Simon Glass wrote:
>> Hi,
>>
>> On Mon, Dec 10, 2012 at 6:42 AM, Jagannadha Sutradharudu Teki
>> wrote:
>>> This patch provides support to program a flash using
>>> Quad-input Page Pro
Hi Jagan,
On Wed, Dec 12, 2012 at 8:21 AM, Jagan Teki wrote:
> Hi Simon,
>
> On Wed, Dec 12, 2012 at 8:53 PM, Simon Glass wrote:
>> Hi Jagan,
>>
>> On Wed, Dec 12, 2012 at 7:20 AM, Jagan Teki wrote:
>>> Hi Simon,
>>>
>>> On Wed, Dec 12, 2012 at 12:05 PM, Simon Glass wrote:
Hi,
O
On Wed, Dec 12, 2012 at 6:46 AM, Jagan Teki wrote:
> Hi Simon,
>
> On Wed, Dec 12, 2012 at 12:03 PM, Simon Glass wrote:
>> Hi,
>>
>> On Mon, Dec 10, 2012 at 6:41 AM, Jagannadha Sutradharudu Teki
>> wrote:
>>> This patch adds a print message on spi_flash_cmd_read_fast()
>>> to make sure that how
On 12/11/2012 04:34 PM, Tom Warren wrote:
> This build is stripped down. It boots to the command prompt.
> GPIO is the only peripheral supported. Others TBD.
>
> include/configs/tegra-common.h now holds common config options
> for Tegra SoCs.
Reviewed-by: Stephen Warren
On 12/11/2012 04:34 PM, Tom Warren wrote:
> This patch adds basic Tegra30 (T30) build support - no specific
> board is targeted.
Reviewed-by: Stephen Warren
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot
Dear Simon Glass,
In message
you wrote:
>
> > Also, this should not be considered as somethin board specific as the
> > name "board polling function" might suggest. What is being discussed
> > here is not more and not less than support for periodic, asynchronous
> > services. So let's call it
On 12/11/2012 04:34 PM, Tom Warren wrote:
> These are stripped down for bringup, They'll be filled out later
> to match-up with the kernel DT contents, and/or as devices are
> brought up (mmc, usb, spi, etc.).
> diff --git a/board/nvidia/dts/tegra30-cardhu.dts
> b/board/nvidia/dts/tegra30-cardhu.
On 12/11/2012 04:34 PM, Tom Warren wrote:
> These files are used by both SPL and main U-Boot.
> Also made minor changes to shared Tegra code to support
> T30 differences.
Reviewed-by: Stephen Warren
(briefly!)
___
U-Boot mailing list
U-Boot@lists.denx
On 12/12/2012 09:14 AM, Tom Warren wrote:
> Allen,
>
> On Tue, Dec 11, 2012 at 5:45 PM, Allen Martin wrote:
>> On Tue, Dec 11, 2012 at 03:34:15PM -0800, Tom Warren wrote:
>>> These files are used by both SPL and main U-Boot.
>>> Also made minor changes to shared Tegra code to support
>>> T30 diff
On 12/12/2012 09:23 AM, Tom Warren wrote:
> Stephen,
>
> On Tue, Dec 11, 2012 at 5:36 PM, Stephen Warren wrote:
>> On 12/11/2012 04:34 PM, Tom Warren wrote:
>>> Common Tegra files are in arch-tegra, shared between T20 and T30.
>>> Tegra30-specific headers are in arch-tegra30. Note that some of
>>
Dear Robert P. J. Day,
> On Tue, 11 Dec 2012, Lukasz Majewski wrote:
> > Hi Pantelis,
> >
> > > Tomorrow I will prepare output of USB Ellisys analizer on my side, so
> > > we could get clue what is going on.
> >
> > Please find attached output from USB ellisys analizer.
>
> is it really appro
Dear Lukasz Majewski,
> Hi Pantelis,
>
> > Tomorrow I will prepare output of USB Ellisys analizer on my side, so
> > we could get clue what is going on.
>
> Please find attached output from USB ellisys analizer.
>
> (It is possible to download WinXP based program to view logs without
> USB anal
On 12/12/2012 02:11:46 AM, Martin Peevski wrote:
Hello, I have the following question. It is about the adresses
where the U-boot and Linux Kernel are copyed in the SDRAM from NAND.
In my board config file I have:
#define CONFIG_SYS_LOAD_ADDR0x2200/* load address
Hi Wolfgang,
On Wed, Dec 12, 2012 at 12:44 PM, Wolfgang Denk wrote:
> Dear Simon Glass,
>
> In message
> you
> wrote:
>>
>> >If anything like this gets implemented, it has to be done in a way
>> >that will be general enough to be useful to others as well.
>>
>> Yes. It isn't really cle
Static variables should be defined in C files, not header files, because
otherwise every C file that #includes the header file will generate a
duplicate of the variables. Since the vsc3316_xxx[] arrays are only
used by t4qds.c anyway, just put the variables there.
Signed-off-by: Timur Tabi
---
Dear Simon Glass,
In message
you wrote:
>
> >If anything like this gets implemented, it has to be done in a way
> >that will be general enough to be useful to others as well.
>
> Yes. It isn't really clear how this sort of thing should be done, but
> creating a board polling function s
Dear Simon Glass,
In message
you wrote:
>
> > If we add something like this, it should be general enough to be used
> > by other systems as well, i. e. please chose a generic API like plain
> > poweroff() or similar.
>
> Maybe rename the function and move to a new include/power.h header,
> wit
Dear Simon Glass,
In message
you wrote:
>
> > Do we really need a new command here?
> >
> > We already have dtt, which basicly does the same.
> >
> > It makes no sense to add new commands for each new device, all doing
> > basicly trhe same, just in an incompatible way.
>
> This patch feature
Dear Vipin Kumar,
In message
you wrote:
> imls does not list the images in NAND devices. This patch implements this
> support for legacy type images.
...
> -static int do_imls(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
> +static void do_imls_flash(void)
Why is this void? Shoul
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
On 12/12/12 12:55, Marek Vasut wrote:
> Dear Tom Rini,
>
>> On 12/10/12 19:47, Marek Vasut wrote:
>>> Dear Lukasz Majewski,
>>>
Pantelis,
>>>
>>> [...]
>>>
>>> Hm hm ... I suspect it'd be nice to have a separate DFU
>>> custodian. That'd lever
Dear Tom Rini,
> On 12/10/12 19:47, Marek Vasut wrote:
> > Dear Lukasz Majewski,
> >
> >> Pantelis,
> >
> > [...]
> >
> > Hm hm ... I suspect it'd be nice to have a separate DFU custodian.
> > That'd leverage some burden from me. I like that idea. I wonder if
> > it'd be nice to start building
Hi Simon,
On Wed, Dec 12, 2012 at 12:11 PM, Simon Glass wrote:
> Hi,
>
> On Mon, Dec 10, 2012 at 6:42 AM, Jagannadha Sutradharudu Teki
> wrote:
>> This patch provides support to program a flash using
>> Quad-input Page Program(32h) instruction.
>>
>> This will effectively increases the data tran
Dear Vipin Kumar,
> >> + ulong start = get_timer(0);
> >> +
> >> + do {
> >> + ret = usb_get_port_status(dev, i + 1, portsts);
> >> + if (ret< 0) {
> >> + USB_HUB_PRINTF("get_port_status failed\n");
> >> +
Stephen,
On Tue, Dec 11, 2012 at 5:40 PM, Stephen Warren wrote:
> On 12/11/2012 04:34 PM, Tom Warren wrote:
>> This provides SPL support for T30 boards - AVP early init, plus
>> CPU (A9) init/jump to main U-Boot.
>>
>> Some changes were made to Tegra20 cpu.c to move common routines
>> into tegra-
Stephen,
On Tue, Dec 11, 2012 at 5:36 PM, Stephen Warren wrote:
> On 12/11/2012 04:34 PM, Tom Warren wrote:
>> Common Tegra files are in arch-tegra, shared between T20 and T30.
>> Tegra30-specific headers are in arch-tegra30. Note that some of
>> these will be filled in as more T30 support is add
Hi Simon,
On Wed, Dec 12, 2012 at 8:53 PM, Simon Glass wrote:
> Hi Jagan,
>
> On Wed, Dec 12, 2012 at 7:20 AM, Jagan Teki wrote:
>> Hi Simon,
>>
>> On Wed, Dec 12, 2012 at 12:05 PM, Simon Glass wrote:
>>> Hi,
>>>
>>> On Mon, Dec 10, 2012 at 6:42 AM, Jagannadha Sutradharudu Teki
>>> wrote:
Allen,
On Tue, Dec 11, 2012 at 5:45 PM, Allen Martin wrote:
> On Tue, Dec 11, 2012 at 03:34:15PM -0800, Tom Warren wrote:
>> These files are used by both SPL and main U-Boot.
>> Also made minor changes to shared Tegra code to support
>> T30 differences.
>>
>> Signed-off-by: Tom Warren
>> ---
>>
Hi Jagan,
On Wed, Dec 12, 2012 at 7:20 AM, Jagan Teki wrote:
> Hi Simon,
>
> On Wed, Dec 12, 2012 at 12:05 PM, Simon Glass wrote:
>> Hi,
>>
>> On Mon, Dec 10, 2012 at 6:42 AM, Jagannadha Sutradharudu Teki
>> wrote:
>>> This patch provides support to program a flash config register.
>>>
>>> Conf
+Mike who is the maintainer
On Wed, Dec 12, 2012 at 7:16 AM, Jagan Teki wrote:
> Hi Simon,
>
> On Wed, Dec 12, 2012 at 8:31 PM, Simon Glass wrote:
>> Hi Jagan,
>>
>> On Wed, Dec 12, 2012 at 6:43 AM, Jagan Teki wrote:
>>> Hi Simon,
>>>
>>> On Wed, Dec 12, 2012 at 12:01 PM, Simon Glass wrote:
>>
Hi Simon,
On Wed, Dec 12, 2012 at 12:05 PM, Simon Glass wrote:
> Hi,
>
> On Mon, Dec 10, 2012 at 6:42 AM, Jagannadha Sutradharudu Teki
> wrote:
>> This patch provides support to program a flash config register.
>>
>> Configuration register contains the control bits used to configure
>> the diffe
Hi Simon,
On Wed, Dec 12, 2012 at 8:31 PM, Simon Glass wrote:
> Hi Jagan,
>
> On Wed, Dec 12, 2012 at 6:43 AM, Jagan Teki wrote:
>> Hi Simon,
>>
>> On Wed, Dec 12, 2012 at 12:01 PM, Simon Glass wrote:
>>> Hi Jagan,
>>>
>>> On Mon, Dec 10, 2012 at 10:37 PM, Jagan Teki
>>> wrote:
Hi Simon,
Hi,
On Wed, Dec 12, 2012 at 5:17 AM, Kyungmin Park wrote:
> Hi,
>
> On Wed, Dec 12, 2012 at 8:33 PM, Rajeshwari Shinde
> wrote:
>> This patch adds support for gpio pin numbering support on EXYNOS5
>> pinmux.
>
> We already know that each exynos5 SoCs has different GPIO name and offsets.
> So it'
Hi Jagan,
On Wed, Dec 12, 2012 at 6:43 AM, Jagan Teki wrote:
> Hi Simon,
>
> On Wed, Dec 12, 2012 at 12:01 PM, Simon Glass wrote:
>> Hi Jagan,
>>
>> On Mon, Dec 10, 2012 at 10:37 PM, Jagan Teki
>> wrote:
>>> Hi Simon,
>>>
>>> I understand your concern.
>>>
>>> But currently there is no prints
On Tue, Dec 11, 2012 at 3:34 PM, Tom Warren wrote:
> This provides SPL support for T30 boards - AVP early init, plus
> CPU (A9) init/jump to main U-Boot.
>
> Some changes were made to Tegra20 cpu.c to move common routines
> into tegra-common/cpu.c and reduce code duplication.
>
> Signed-off-by: To
On Tue, Dec 11, 2012 at 3:34 PM, Tom Warren wrote:
> Common Tegra files are in arch-tegra, shared between T20 and T30.
> Tegra30-specific headers are in arch-tegra30. Note that some of
> these will be filled in as more T30 support is added (drivers,
> WB/LP0 support, etc.). A couple of Tegra20 fil
Hi Hatim,
On Tue, Dec 11, 2012 at 2:54 AM, Hatim Ali wrote:
> From: Akshay Saraswat
>
> Fdt entry for Exynos TMU driver specific pre-defined values used for
> calibration of current temperature and defining threshold values.
>
> Signed-off-by: Akshay Saraswat
> Acked-by: Simon Glass
>
> diff -
Add support for Numonyx N25Q064 SPI flash.
Signed-off-by: Jagannadha Sutradharudu Teki
---
drivers/mtd/spi/stmicro.c |6 ++
1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/drivers/mtd/spi/stmicro.c b/drivers/mtd/spi/stmicro.c
index 30b626a..9ec938a 100644
--- a/drivers/mtd
On Tue, Dec 11, 2012 at 3:01 AM, Ajay Kumar wrote:
> Currently, exynos FIMD driver is being used to support only TIZEN LOGOs.
> In order to get LCD console, we need to enable half word swap feature
> of FIMD and use 16 BPP.
>
> Signed-off-by: Ajay Kumar
Eventual FDT support should help to remove
Hi Simon,
On Wed, Dec 12, 2012 at 12:03 PM, Simon Glass wrote:
> Hi,
>
> On Mon, Dec 10, 2012 at 6:41 AM, Jagannadha Sutradharudu Teki
> wrote:
>> This patch adds a print message on spi_flash_cmd_read_fast()
>> to make sure that how many bytes read from flash device.
>>
>> Signed-off-by: Jaganna
Hi Simon,
On Wed, Dec 12, 2012 at 12:01 PM, Simon Glass wrote:
> Hi Jagan,
>
> On Mon, Dec 10, 2012 at 10:37 PM, Jagan Teki wrote:
>> Hi Simon,
>>
>> I understand your concern.
>>
>> But currently there is no prints a/f reading/writing/erasing the SPI flash.
>> User's are unable to confirm wheth
Hi Ajay,
On Tue, Dec 11, 2012 at 3:01 AM, Ajay Kumar wrote:
> Add panel_info structure required by LCD driver
> and DP panel platdata for SMDK5250.
> Enable FIMD and DP support on SMDK5250.
> DP Panel size: 2560x1600.
> We use 16BPP resolution to get LCD console.
>
> Signed-off-by: Ajay Kumar
A
Hi Rajeshwari,
On Mon, Dec 3, 2012 at 5:30 AM, Rajeshwari Shinde
wrote:
> This patch adds the device node required for USB
>
> Signed-off-by: Vivek Gautam
> ---
> arch/arm/dts/exynos5250.dtsi |6 ++
> 1 files changed, 6 insertions(+), 0 deletions(-)
>
> diff --git a/arch/arm/dts/exynos5
On Tue, Dec 11, 2012 at 3:01 AM, Ajay Kumar wrote:
> When only DP is used, we need not enable CONFIG_EXYNOS_MIPI_DSIM.
> Similarly, when only MIPI is used, we need not enable CONFIG_EXYNOS_DP.
> But the current structuring of code forces us to enable both
> CONFIG_EXYNOS_MIPI_DSIM and CONFIG_EXYNO
Hi Ajay,
On Tue, Dec 11, 2012 at 3:01 AM, Ajay Kumar wrote:
> With VPLL as source clock to FIMD,
> Exynos DP Initializaton was failing sometimes with unstable clock.
> Changing FIMD source to resolves this issue.
>
> Signed-off-by: Ajay Kumar
Acked-by: Simon Glass
At some point it would be ni
Hi Rajeshwari,
On Mon, Dec 10, 2012 at 3:55 AM, Rajeshwari Shinde
wrote:
> Enabled pmic MAX77686 for SMDK5250.
>
> Signed-off-by: Rajeshwari Shinde
With nit below fixed:
Acked-by: Simon Glass
> ---
> board/samsung/smdk5250/smdk5250.c | 15 +++
> include/configs/smdk5250.h
Hi Rajeshwari,
On Mon, Dec 10, 2012 at 3:55 AM, Rajeshwari Shinde
wrote:
> Moved the pmic_max77686.c max77686_pmic.h to drivers/power
> and made required changes accordingly
>
> Signed-off-by: Rajeshwari Shinde
Acked-by: Simon Glass
See nit below if you end up resending.
You might consider u
On Tue, Dec 11, 2012 at 2:52 AM, Hatim Ali wrote:
> Add the configuration file for exynos5250 based SMDK5250 board.
>
> Signed-off-by: Hatim Ali
Acked-by: Simon Glass
> ---
> Changes since v2:
> - No Change
>
> include/configs/smdk5250.h | 33 +
> 1 f
Hi Hatim,
On Tue, Dec 11, 2012 at 2:52 AM, Hatim Ali wrote:
> Create a common configuration file for all exynos5250 based boards.
> Going forward we will be using DT based driver discovery for all the boards
> based on Exynos5. The different boards added will have there own config.h
> files
> wh
Hi Wolfgang,
On Tue, Dec 11, 2012 at 4:39 AM, Wolfgang Denk wrote:
> Dear Hatim Ali,
>
> In message <1355223289-15685-5-git-send-email-hatim...@samsung.com> you wrote:
>> From: Akshay Saraswat
>>
>> Adding a generic polling function to continuously monitor events and
>> trigger actions correspon
Ciao Vipin,
On 12/12/2012 01:04 PM, Vipin KUMAR wrote:
From: Armando Visconti
This patch adds the support for the ARM PL022 SPI controller for the standard
variant (0x00041022), which has a 16bit wide and 8 locations deep TX/RX FIFO.
Have you tested this patch on the new variant as well?
You
Hi,
On Tue, Dec 11, 2012 at 8:01 PM, Ajay Kumar wrote:
> This patch adds pinmux configuration for backlight, LCD reset
> and HPD for DP panel on Exynos5 SMDK.
>
> Signed-off-by: Ajay Kumar
> ---
> arch/arm/cpu/armv7/exynos/pinmux.c| 20
> arch/arm/include/asm/arch
Hi Hatim,
On Tue, Dec 11, 2012 at 4:43 AM, Wolfgang Denk wrote:
> Dear Hatim Ali,
>
> In message <1355223289-15685-4-git-send-email-hatim...@samsung.com> you wrote:
>> From: Akshay Saraswat
>>
>> Adding API in power for system shutdown when tripping value is reached
>> in Exynos Thermal Manageme
Hi,
On Tue, Dec 11, 2012 at 4:30 AM, Wolfgang Denk wrote:
> Dear Hatim Ali,
>
> In message <1355223289-15685-8-git-send-email-hatim...@samsung.com> you wrote:
>> From: Alim Akhtar
>>
>> Adds a new u-boot command to read current temprature from tmu driver.
>>
>> Signed-off-by: Alim Akhtar
>> Ack
On Wed, Dec 12, 2012 at 02:00:33PM +0100, Daniel Schwierzeck wrote:
> Hi Tom,
>
> please pull two bugfixes for MIPS.
>
>
> The following changes since commit ea40a05422bdc87a7af5dc349e8adce59f982e72:
>
> MIPS: constify address pointer in test_bit() (2012-12-08 21:48:19 +0100)
>
> are availa
Hi Tom,
On Wed, Dec 12, 2012 at 5:13 AM, Tom Rini wrote:
> On Wed, Dec 05, 2012 at 04:46:27PM -0800, Simon Glass wrote:
>
>> This collection of patches to common/ adds the following:
>>
>> - EDID support for LCD displays
>> - TPM stress test
>> - gettime command to find out the time since boot
>>
Hi,
On Wed, Dec 12, 2012 at 8:33 PM, Rajeshwari Shinde
wrote:
> This patch adds support for gpio pin numbering support on EXYNOS5
> pinmux.
We already know that each exynos5 SoCs has different GPIO name and offsets.
So it's good time to use proper soc prefix. e.g., EXYNOS5250_*.
Since only exyno
On Tue, Dec 11, 2012 at 09:42:21PM -0600, Joe Hershberger wrote:
> Hi Thomas,
>
> On Tue, Dec 11, 2012 at 5:47 PM, Langer Thomas (LQDE RD ST PON SW)
> wrote:
> > Hello Joe,
> >
> > These patches for static initialization of the struct eth_ops will break
> > the drivers on any architecture which
On Tue, Dec 11, 2012 at 07:42:19AM +0100, Heiko Schocher wrote:
> Hello Tom,
>
> The following changes since commit fd4d564b3c80b111f18c93adb14233a6a7ddb0e9:
>
> Merge branch 'master' of git://git.denx.de/u-boot-x86 (2012-12-07 08:47:59
> -0700)
>
> are available in the git repository at:
>
On Thu, Dec 06, 2012 at 04:33:33PM +0100, Stefano Babic wrote:
> On 06/12/2012 16:23, Lukasz Majewski wrote:
> > Do not compile in FDT related code, when it is not supported.
> >
> > Signed-off-by: Lukasz Majewski
> > Signed-off-by: Kyungmin Park
> > ---
> > common/cmd_spl.c |2 ++
> > 1 fi
On Wed, Dec 05, 2012 at 04:46:27PM -0800, Simon Glass wrote:
> This collection of patches to common/ adds the following:
>
> - EDID support for LCD displays
> - TPM stress test
> - gettime command to find out the time since boot
> - Adds coreboot information to the 'version' command
> - Fixes LMB
On Sat, Dec 08, 2012 at 11:54:13AM -0800, Simon Glass wrote:
> Hi Fabio,
>
> On Wed, Dec 5, 2012 at 5:30 PM, Fabio Estevam wrote:
> > On Wed, Dec 5, 2012 at 11:25 PM, Vadim Bendebury
> > wrote:
> >
> >> No - md/mw access memory, the new commands access the IO space (which
> >> is an x86 archite
Hi Tom,
please pull two bugfixes for MIPS.
The following changes since commit ea40a05422bdc87a7af5dc349e8adce59f982e72:
MIPS: constify address pointer in test_bit() (2012-12-08 21:48:19 +0100)
are available in the git repository at:
git://git.denx.de/u-boot-mips.git master
for you to fet
From: Joe Hershberger
serial_initialize() must be called after relocation to adjust the
pointers to putc(), getc(), etc. This is busted ever since the
serial driver-model-ification series.
Signed-off-by: Joe Hershberger
Signed-off-by: Daniel Schwierzeck
---
Changes for v2:
- include to fix g
mips_io_port_base is exported as 'extern const unsigned long mips_io_port_base;'
in arch/mips/include/asm/io.h. Thus make the variable const too.
Signed-off-by: Daniel Schwierzeck
---
arch/mips/lib/board.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/mips/lib/board.c
Hi Joe,
2012/12/12 Joe Hershberger :
> serial_initialize() must be called after relocation to adjust the
> pointers to putc(), getc(), etc. This is busted ever since the
> serial driver-model-ification series.
>
> Signed-off-by: Joe Hershberger
> ---
> arch/mips/lib/board.c | 2 ++
> 1 file cha
On 12/12/2012 01:04 PM, Vipin Kumar wrote:
> From: Armando Visconti
>
> This patch adds the support for the ARM PL022 SPI controller for the standard
> variant (0x00041022), which has a 16bit wide and 8 locations deep TX/RX FIFO.
>
> Signed-off-by: Armando Visconti
> Signed-off-by: Vipin Kumar
From: Armando Visconti
This patch adds the support for the ARM PL022 SPI controller for the standard
variant (0x00041022), which has a 16bit wide and 8 locations deep TX/RX FIFO.
Signed-off-by: Armando Visconti
Signed-off-by: Vipin Kumar
---
drivers/spi/Makefile| 1 +
drivers/spi/pl022_
1 - 100 of 130 matches
Mail list logo