When __BYTEORDER_HAS_U64__ is not defined, we got warning following:
-
/tmp/include/linux/byteorder/little_endian.h: In function ‘__cpu_to_be64p’:
/tmp/include/linux/byteorder/little_endian.h:71:2: warning: implicit
declaration of function ‘__swab64p’
[-Wimplicit-function-decl
From: Nobuhiro Iwamatsu
When __BYTEORDER_HAS_U64__ is not defined, we got warning following:
-
/tmp/include/linux/byteorder/little_endian.h: In function ‘__cpu_to_be64p’:
/tmp/include/linux/byteorder/little_endian.h:71:2: warning: implicit
declaration of function ‘__swab64p’
Hi Scott,
Thanks for ur reply,
Problem got solved after increasing the TLB entry size of flash to 256MB.
Now u-boot booted properly and able to get the prompt.
On Tue, Oct 23, 2012 at 5:28 AM, Scott Wood wrote:
> On 10/18/2012 05:50:23 AM, diyaa wrote:
>
>>
>> Hi
>>
>> I am working on a cu
Hi Robert,
On Wed, 14 Nov 2012 15:06:48 -0500 (EST), "Robert P. J. Day"
wrote:
> On Wed, 14 Nov 2012, Albert ARIBAUD wrote:
>
> > Hi Robert,
> >
> > On Wed, 14 Nov 2012 11:32:11 -0500 (EST), "Robert P. J. Day"
> > wrote:
> >
> > >
> > > perusing the Makefiles, pretty straightforward but, on
Hello Rajeshwari,
On 14.11.2012 10:11, Rajeshwari Shinde wrote:
Functions added to get the I2C bus number and reset I2C bus using
FDT node.
Signed-off-by: Simon Glass
Signed-off-by: Rajeshwari Shinde
---
Changes in V2:
- Added periph id to I2C bus structure.
- Modified i2c_get_b
Hello Rajeshwari
On 14.11.2012 10:11, Rajeshwari Shinde wrote:
Add I2C device node data for exynos
Signed-off-by: Rajeshwari Shinde
Acked-by: Simon Glass
---
Changes in V2:
Added Periph id to the I2C device node
arch/arm/dts/exynos-periph-id.dtsi | 35 +
arch/arm/dt
On 13.11.2012 17:31, Andreas Bießmann wrote:
Signed-off-by: Andreas Bießmann
Cc: Marek Vasut
Cc: Wolfgang Denk
Tested-by: Dirk Behme
Thanks
Dirk
---
Makefile |2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index 9dc89f9..5fa2fba 100644
--- a/M
Dear Marek Vasut,
> Dear Andreas Puls,
>
> > Dear Marek Vasut,
> >
> > > Dear Andreas Puls,
> > >
> > > > Hi together,
> > > >
> > > > i've got another problem with latest stable U-Boot-2012.10 and a
> > > > Toradex Colibri PXA270 V2.4
> > > >
> > > > Uboot dosen't regonized the CPU Revision
Hi, Marek.
This patch was not picked to your repository yet.
Could you apply?
Best regards,
Nobuhiro
On Wed, Mar 21, 2012 at 4:30 PM, Marek Vasut wrote:
> Dear Nobuhiro Iwamatsu,
>
>> Some variables are initialized with a value defined by macro.
>> This was changed to use the macro directly.
By commit c7e3b2b5, this was chanded to support multiple controllers.
But this has missing of parenthesis. This commit fix it.
-
r8a66597-hcd.c: In function ‘usb_lowlevel_init’:
r8a66597-hcd.c:911:52: error: expected declaration specifiers before ‘)’
token
r8a66597-hcd.c:935:1: error: expected
Dear andyjjones,
In message <34681962.p...@talk.nabble.com> you wrote:
>
> I downloaded Nishant Menon's "omap-u-boot-utils" and followed the
> instructions at:
> http://elinux.org/BeagleBoardRecovery#UART_recovery
Which U-Boot version is this exactly? And which exact U-Bootcommands
did you use
On Thu, 15 Nov 2012 15:43:40 +1100
David Gibson wrote:
> On Wed, Nov 14, 2012 at 06:59:58PM -0600, Kim Phillips wrote:
> > +#define EXTRACT_BYTE(x, n) ((unsigned long long)((uint8_t *)&x)[n])
> > +#define __SWAB16(x) ((EXTRACT_BYTE(x, 0) << 8) | EXTRACT_BYTE(x, 1))
> > +#define __SWAB32(x) ((EXTR
On Wed, Nov 14, 2012 at 06:59:58PM -0600, Kim Phillips wrote:
> Projects such as linux and u-boot run sparse on libfdt. libfdt
> contains the notion of endianness via usage of endian conversion
> functions such as fdt32_to_cpu. As such, in order to pass endian
> checks, libfdt has to annotate its
Hi everyone,
I am trying to boot my custom TI AM3517 board through its serial port.
I downloaded Nishant Menon's "omap-u-boot-utils" and followed the
instructions at:
http://elinux.org/BeagleBoardRecovery#UART_recovery
Halfway through step 5, at:
./ukermit -p /dev/ttyS0 -f u-boot.bin
Nothing
Projects such as linux and u-boot run sparse on libfdt. libfdt
contains the notion of endianness via usage of endian conversion
functions such as fdt32_to_cpu. As such, in order to pass endian
checks, libfdt has to annotate its fdt variables such that sparse
can warn when mixing bitwise and regul
in order to get the upcoming fdt type definitions.
Signed-off-by: Kim Phillips
Acked-by: David Gibson
---
v2: added David's Acked-by.
fdtdump.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fdtdump.c b/fdtdump.c
index 207a46d..8a7ae72 100644
--- a/fdtdump.c
+++ b/fdtdump.
tests will need fdt type definitions provided in a subsequent patch
to libfdt_env.h. Since libfdt.h includes libfdt_env.h in the right
order anyway, just remove the fdt.h include.
Signed-off-by: Kim Phillips
Acked-by: David Gibson
---
v2: added David's Acked-by.
tests/add_subnode_with_nops.c
Now that fdt types are defined and annotated, use them to
make sparse happy.
Signed-off-by: Kim Phillips
---
v2: reworded commit text
libfdt/fdt.c | 2 +-
libfdt/fdt_ro.c | 2 +-
libfdt/fdt_rw.c | 4 ++--
libfdt/fdt_sw.c | 4 ++--
libfdt/fdt_wip.c | 2 +-
libfdt/libfdt.h | 32 +
Hi, I will fix all mentioned style problems.
On Tuesday 13 November 2012 09:27:41 Wolfgang Denk wrote:
> > + /* key up was pressed */
> > + if (key == 'A')
> > + key = 1;
> > + /* key do
On Wed, 14 Nov 2012, Albert ARIBAUD wrote:
> Hi Robert,
>
> On Wed, 14 Nov 2012 11:32:11 -0500 (EST), "Robert P. J. Day"
> wrote:
>
> >
> > perusing the Makefiles, pretty straightforward but, on occasion, i
> > run into something like this (from
> > arch/arm/cpu/armv7/omap-common/Makefile):
> >
Hi Rajeshwari,
On Wed, Nov 14, 2012 at 1:11 AM, Rajeshwari Shinde
wrote:
> This patch set adds FDT support for I2C driver and
> API's to acess the bus number using the fdt node
> and also reset the port.
>
> Changes in V2:
> - Baord i2c init moved to I2C driver in case of FDT.
> -
On Wed, Nov 14, 2012 at 1:11 AM, Rajeshwari Shinde
wrote:
> This patch initialises I2C using FDT.
>
> Signed-off-by: Rajeshwari Shinde
Acked-by: Simon Glass
> ---
> Changes since V2:
> - board_i2c_init moved to driver in case of FDT.
> board/samsung/smdk5250/smdk5250.c | 20 +---
Hi,
On Wed, Nov 14, 2012 at 1:11 AM, Rajeshwari Shinde
wrote:
> Functions added to get the I2C bus number and reset I2C bus using
> FDT node.
>
> Signed-off-by: Simon Glass
> Signed-off-by: Rajeshwari Shinde
> ---
> Changes in V2:
> - Added periph id to I2C bus structure.
> - Mo
Hi Robert,
On Wed, 14 Nov 2012 11:32:11 -0500 (EST), "Robert P. J. Day"
wrote:
>
> perusing the Makefiles, pretty straightforward but, on occasion, i
> run into something like this (from
> arch/arm/cpu/armv7/omap-common/Makefile):
>
> ... snip ...
> SOBJS := reset.o
>
> COBJS := timer.o
On Wednesday 14 November 2012 07:02 PM, R Sricharan wrote:
On Wednesday 14 November 2012 02:19 PM, Lokesh Vutla wrote:
DMM_LISA_MAP registers program whether memory is mapped
on particular EMIF or not. Irrespective of these registers
EMIF is getting configured. Correcting the same.
Signed-off-b
perusing the Makefiles, pretty straightforward but, on occasion, i
run into something like this (from
arch/arm/cpu/armv7/omap-common/Makefile):
... snip ...
SOBJS := reset.o
COBJS := timer.o
COBJS += utils.o
... snip ...
the thing is, all of the above are .c files, including reset.c.
On Wed, 14 Nov 2012, Benoît Thébaudeau wrote:
> Take a look at the following rule in the main Makefile:
> $(obj)include/autoconf.mk: $(obj)include/config.h
yup, that's what i was looking for, thanks.
rday
--
Robert P.
Dear Robert P. J. Day,
On Wednesday, November 14, 2012 4:35:15 PM, Robert P. J. Day wrote:
> i'm sure there's a trivial explanation for this that i'm missing
> but
> i'm looking at this snippet from arch/arm/cpu/armv7/omap3/Makefile:
>
> ... snip ...
> COBJS += board.o
> COBJS += clock.o
i'm sure there's a trivial explanation for this that i'm missing but
i'm looking at this snippet from arch/arm/cpu/armv7/omap3/Makefile:
... snip ...
COBJS += board.o
COBJS += clock.o
COBJS += mem.o
COBJS += sys_info.o
ifdef CONFIG_SPL_BUILD
COBJS-$(CONFIG_SPL_OMAP3_ID_NAND) += sp
Hi Kim,
>
> I hope this addresses all your comments, David.
Which is why David didn't see this patch earlier. :-)
> index 213d7fb..302d5cb 100644
> --- a/libfdt/libfdt_env.h
> +++ b/libfdt/libfdt_env.h
> @@ -5,25 +5,63 @@
> #include
> #include
>
> +#ifdef __CHECKER__
> +#define __force
Dear Andreas Puls,
> Dear Marek Vasut,
>
> > Dear Andreas Puls,
> >
> > > Hi together,
> > >
> > > i've got another problem with latest stable U-Boot-2012.10 and a
> > > Toradex Colibri PXA270 V2.4
> > >
> > > Uboot dosen't regonized the CPU Revision
> > > u-boot summary screen:
> > >
> > > U
Dear Marek Vasut,
> Dear Andreas Puls,
>
> > Hi together,
> >
> > i've got another problem with latest stable U-Boot-2012.10 and a Toradex
> > Colibri PXA270 V2.4
> >
> > Uboot dosen't regonized the CPU Revision
> > u-boot summary screen:
> >
> > U-Boot 2012.10 (Nov 12 2012 - 14:22:12)
> > CPU
Hello Tom,
The following changes since commit 1cc619be8b73abbee2fd6faf2cd4ade27b516531:
Merge branch 'master' of git://git.denx.de/u-boot-avr32 (2012-11-05 09:46:45
-0700)
are available in the git repository at:
git://git.denx.de/u-boot-video.git master
Bo Shen (1):
video: atmel: im
Hello Tom,
The following changes since commit 1cc619be8b73abbee2fd6faf2cd4ade27b516531:
Merge branch 'master' of git://git.denx.de/u-boot-avr32 (2012-11-05 09:46:45
-0700)
are available in the git repository at:
git://git.denx.de/u-boot-staging.git ag...@denx.de
Alejandro Mery (1):
Hi,
On Sun, 11 Nov 2012 08:24:44 -0500 (EST)
"Robert P. J. Day" wrote:
>
> Signed-off-by: Robert P. J. Day
>
> ---
>
> diff --git a/common/cmd_mmc.c b/common/cmd_mmc.c
> index 62a1c22..4c19df7 100644
> --- a/common/cmd_mmc.c
> +++ b/common/cmd_mmc.c
> @@ -144,7 +144,7 @@ static int do_mmcinf
On Wednesday 14 November 2012 02:19 PM, Lokesh Vutla wrote:
DMM_LISA_MAP registers program whether memory is mapped
on particular EMIF or not. Irrespective of these registers
EMIF is getting configured. Correcting the same.
Signed-off-by: Lokesh Vutla
---
arch/arm/cpu/armv7/omap-common/emif-c
On Tuesday 13 November 2012 11:42 PM, Robert P. J. Day wrote:
No functional changes, simply for readability.
Signed-off-by: Robert P. J. Day
---
diff --git a/arch/arm/cpu/armv7/omap4/clocks.c
b/arch/arm/cpu/armv7/omap4/clocks.c
index 5bd0a88..12c5803 100644
--- a/arch/arm/cpu/armv7/omap4/cl
Hi,
On Sat, 10 Nov 2012 13:32:46 +0100
Anatolij Gustschin wrote:
> From: Vikram Narayanan
>
> The inclusion of LCD patch into mx53loco breaks the build when
> CONFIG_VIDEO is disabled. Fix this by splitting the video
> related stuff to a new file.
>
> Also rename the function lcd_iomux to set
Hi,
On Sat, 10 Nov 2012 13:28:52 +0100
Anatolij Gustschin wrote:
> From: Vikram Narayanan
>
> The inclusion of LCD patch into mx51evk breaks the build when
> CONFIG_VIDEO is disabled. Fix this by splitting the video related
> stuff to a new file.
>
> Also rename the function lcd_iomux to setu
Hi,
On Tue, 30 Oct 2012 12:49:26 +0100
Andreas Bießmann wrote:
> This patch adds time measurement and throughput calculation for all supported
> fsload commands.
>
> The output of ext2load changes from
>
> ---8<---
> 1830666 bytes read
> --->8---
>
> to
>
> ---8<---
> 1830666 bytes read in 2
Hi,
On Wed, 31 Oct 2012 19:21:33 +0100
Alejandro Mery wrote:
> the upcoming sunxi (allwinner a10/a13) platform enables zfs
> by default, and using linaro's hf -msoft-float makes the build
> fail because this u64 division.
>
> Signed-off-by: Alejandro Mery
> ---
> fs/zfs/zfs.c | 4 +++-
> 1 fi
On Wed, Nov 14, 2012 at 10:19 AM, Stefano Babic wrote:
> On 14/11/2012 11:29, Otavio Salvador wrote:
> >
>
> Hi Otavio,
>
> >
> > In the text you have the offset to save the image onto a NAND offset so
> > I fail to see how it'd be used for SD-Card.
> >
> > Can you elaborate it a bit?
>
> No, I c
On 14/11/2012 11:29, Otavio Salvador wrote:
>
>
Hi Otavio,
>
> In the text you have the offset to save the image onto a NAND offset so
> I fail to see how it'd be used for SD-Card.
>
> Can you elaborate it a bit?
No, I can't without introducing errors. Current code supports Falcon
only booti
Since the top-level README file refers the reader to the CHANGELOG,
it's worth mentioning how to generate it.
Signed-off-by: Robert P. J. Day
---
diff --git a/README b/README
index afdf591..eeda03b 100644
--- a/README
+++ b/README
@@ -54,6 +54,11 @@ In case of problems see the CHANGELOG and CR
Hi,
On Wed, 14 Nov 2012 11:10:20 +0100
"Jens Scharsig (BuS Elektronik)" wrote:
> From: "Jens Scharsig (BuS Elektronik)"
>
> if a board uses the vcxk driver option CONFIG_SYS_VCXK_DOUBLEBUFFERD,
> compilier shows warnings. This patch will fix it.
>
> Signed-off-by: Jens Scharsig (BuS Elektroni
Hi,
On Tue, 30 Oct 2012 11:46:05 +0100
"Jens Scharsig (BuS Elektronik)" wrote:
> From: "Jens Scharsig (BuS Elektronik)"
>
> - update clock settings for higher perfomance
> - change standard baud rate to 115200
> - fix flash base address
> - remove unused defines
> - add I2C support
> - switch
> -Original Message-
> From: Michael Walle [mailto:mich...@walle.cc]
> Sent: 13 November 2012 04:48
> To: u-boot@lists.denx.de
> Cc: Tom Rini; Prafulla Wadaskar
> Subject: Re: [U-Boot] v2013.01-rc1 released
>
>
> Hi Tom, Hi Prafulla,
>
> Am Sonntag 04 November 2012, 19:49:59 schrieb To
Dear Angelo,
In message <20121114094706.GA5697@angel3> you wrote:
>
> > Which exact tool chain are you using to build the code?
>
> I tested 2 different toolchains,
>
> m68k-elf-gcc (Sourcery CodeBench Lite 2011.09-21) 4.6.1
OK, this should be recent enough...
> > It is set because it is use
Hello Jens,
On Wed, 14 Nov 2012 11:26:59 +0100
wrote:
..
> I have seen this patch is marked as "Changes Requested" in
> patchwork. But I have never get a request or comment.
> Is there an real reason for this state?
I also do not see any such requests on the list, so it must have happened
by an
From: Scott Jiang
Spi driver for bf60x is different from old one, so implement a new
driver for it.
Signed-off-by: Scott Jiang
Signed-off-by: Sonic Zhang
Signed-off-by: Bob Liu
---
.../blackfin/include/asm/mach-common/bits/spi6xx.h | 240 +++
drivers/spi/Makefile
Bf60x support 16K, 64K, 16M and 64M cplb pages, this patch add support for them.
So that bf609-ezkit can use it's 128M memory.
Signed-off-by: Bob Liu
---
arch/blackfin/include/asm/cplb.h | 17 +++--
arch/blackfin/lib/board.c| 27 ---
2 files change
From: Sonic Zhang
Add rsi/sdh support for bf60x.
Signed-off-by: Sonic Zhang
Signed-off-by: Bob Liu
---
arch/blackfin/include/asm/mach-common/bits/sdh.h | 38 +++-
drivers/mmc/bfin_sdh.c | 68 +-
2 files changed, 88 insertions(+), 18 de
From: Steven Miao
Add Bf60x resume from hibernate support
Signed-off-by: Steven Miao
Signed-off-by: Sonic Zhang
Signed-off-by: Bob Liu
---
arch/blackfin/cpu/initcode.c | 44 ++
1 file changed, 44 insertions(+)
diff --git a/arch/blackfin/cpu/initcode
Core changed for supporting bf60x.
Signed-off-by: Bob Liu
---
arch/blackfin/cpu/cpu.c|4 +-
arch/blackfin/cpu/initcode.c | 308 ++--
arch/blackfin/cpu/initcode.h | 52 ++
arch/blackfin/cpu/reset.c |6 +
a
From: Sonic Zhang
Add serial for bf60x.
Signed-off-by: Sonic Zhang
Signed-off-by: Bob Liu
---
arch/blackfin/cpu/serial.c | 81 +++---
arch/blackfin/cpu/serial.h | 222 ++--
arch/blackfin/cpu/serial1.h| 275
Signed-off-by: Bob Liu
---
arch/blackfin/cpu/gpio.c| 36 +--
arch/blackfin/include/asm/gpio.h|2 +-
arch/blackfin/include/asm/mach-bf609/gpio.h | 151 +++
3 files changed, 181 insertions(+), 8 deletions(-)
create mode 100644 arch
Board files for bf609-ezkit support.
Signed-off-by: Bob Liu
---
MAINTAINERS |1 +
board/bf609-ezkit/Makefile| 55
board/bf609-ezkit/bf609-ezkit.c | 67 ++
boards.cfg|1 +
include/configs/bf609-ezkit.h
From: Sonic Zhang
Set up soft switch pins properly in board init code.
Signed-off-by: Sonic Zhang
Signed-off-by: Bob Liu
---
board/bf609-ezkit/soft_switch.c | 169 +++
board/bf609-ezkit/soft_switch.h | 71
2 files changed, 240 insertions
Signed-off-by: Bob Liu
---
arch/blackfin/cpu/initcode.c | 13 +
arch/blackfin/cpu/start.S |2 ++
include/configs/bf609-ezkit.h |1 +
3 files changed, 16 insertions(+)
diff --git a/arch/blackfin/cpu/initcode.c b/arch/blackfin/cpu/initcode.c
index 3bbdf22..6740e34 100644
Add dma support for bf60x.
Signed-off-by: Bob Liu
---
arch/blackfin/include/asm/dma.h | 113 --
arch/blackfin/include/asm/mach-common/bits/dma.h | 48 -
arch/blackfin/lib/string.c | 97 ++-
3 files changed, 1
Hello,
I have seen this patch is marked as "Changes Requested" in
patchwork. But I have never get a request or comment.
Is there an real reason for this state?
regards Jens
Am 2012-10-30 11:46, schrieb Jens Scharsig (BuS Elektronik):
> From: "Jens Scharsig (BuS Elektronik)"
>
> - update clock
Hi,
On Tue, 13 Nov 2012 14:21:51 +0100
Lukasz Majewski wrote:
...
> Lukasz Majewski (26):
> pmic:i2c: Handle PMIC I2C transmission comprising of two bytes
> pmic:i2c: Add I2C sensor byte order (big/little) to PMIC framework
> pmic:max8997: Switch the MAX8997 PMIC to be used with multibus I2
On Tue, Nov 13, 2012 at 9:11 AM, Stefano Babic wrote:
> Simple howto to add support to a board
> for booting the kernel from SPL ("Falcon" mode).
>
> Signed-off-by: Stefano Babic
> ---
> Changes in v2:
> - spelling, language fixes (Andreas Biessman)
> - rewrite some unclear sentences
> - drop CO
ons 2012-11-14 klockan 10:47 +0100 skrev Angelo Dureghello:
> > > Also, i don't understand why "-g" is set by default.
> My question becouse sometime embedded programmers fight for a bite free
> in the flash. On limited boards like mine (4M Flash) once kernel and
> some apps are stored, very sm
Blackfin bf60x is a new processor for blackfin.
This series patches add some basic support for it with a bf609-ezkit reference
board.
I got some suggestion in the former commit. Some of them are fixed, but some
is still not clear.
Since it's a long time ago, i send out V3 for feedback.
Bob Liu (7
Hi,
On Tue, 13 Nov 2012 16:30:39 -0600
Scott Wood wrote:
> Commit 97b24d3d51a92cb8c0c1e1a74abf22fe1a1807a3 "common: Add symbol
> handling for generic lists into Makefile" introduced build errors in many
> nand_spl targets, complaining of a missing u-boot.lst. When not doing an
> out-of-tree bui
From: "Jens Scharsig (BuS Elektronik)"
if a board uses the vcxk driver option CONFIG_SYS_VCXK_DOUBLEBUFFERD,
compilier shows warnings. This patch will fix it.
Signed-off-by: Jens Scharsig (BuS Elektronik)
---
drivers/video/bus_vcxk.c |2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
di
Hi,
On Tue, 13 Nov 2012 17:31:39 +0100
Andreas Bießmann wrote:
> Signed-off-by: Andreas Bießmann
> Cc: Marek Vasut
> Cc: Wolfgang Denk
> ---
> Makefile |2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Appied to staging/ag...@denx.de, thanks!
Anatolij
_
I think there might be a bug in this commit:
http://git.denx.de/cgi-bin/gitweb.cgi?p=u-boot.git;a=commitdiff;h=2c8fe5120f8da013cbd789be2f10cce880972836
The commit makes "the netconsole buffer size configurable". It adds
CONFIG_NETCONSOLE_BUFFER_SIZE and maintains the original 512 default value u
Hi Wolfgang and all,
On Tue, Nov 13, 2012 at 08:09:19AM +0100, Wolfgang Denk wrote:
> Dear Angelo Dureghello,
>
> please don't top-post / full quote.
>
Ack.
> I am really surprised about your claim that the -O2 compiled code is
> actually running faster than the -Os compiled one on a low-end s
This patch initialises I2C using FDT.
Signed-off-by: Rajeshwari Shinde
---
Changes since V2:
- board_i2c_init moved to driver in case of FDT.
board/samsung/smdk5250/smdk5250.c | 20 +---
1 files changed, 1 insertions(+), 19 deletions(-)
diff --git a/board/samsung/smdk5
This patch set adds FDT support for I2C driver and
API's to acess the bus number using the fdt node
and also reset the port.
Changes in V2:
- Baord i2c init moved to I2C driver in case of FDT.
- Added Periph id to device node.
- Modified i2c_get_bus_num_fdt api to compare u
This patch adds aliases for I2C.
Signed-off-by: Rajeshwari Shinde
Acked-by: Simon Glass
---
Changes in V2:
- None.
board/samsung/dts/exynos5250-smdk5250.dts | 11 +++
1 files changed, 11 insertions(+), 0 deletions(-)
diff --git a/board/samsung/dts/exynos5250-smdk5250.dts
b/b
Add required compatible information for I2C driver.
Signed-off-by: Rajeshwari Shinde
Acked-by: Simon Glass
---
Changes in V2:
- None
include/fdtdec.h |1 +
lib/fdtdec.c |1 +
2 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/include/fdtdec.h b/include/fdtdec.h
i
Add I2C device node data for exynos
Signed-off-by: Rajeshwari Shinde
Acked-by: Simon Glass
---
Changes in V2:
Added Periph id to the I2C device node
arch/arm/dts/exynos-periph-id.dtsi | 35 +
arch/arm/dts/exynos5250.dtsi | 73 +++
Functions added to get the I2C bus number and reset I2C bus using
FDT node.
Signed-off-by: Simon Glass
Signed-off-by: Rajeshwari Shinde
---
Changes in V2:
- Added periph id to I2C bus structure.
- Modified i2c_get_bus_num_fdt function to compare with node.
- Board i2c ini
This patch adds api to find compatible id for a given
FDT node
Signed-off-by: Rajeshwari Shinde
Acked-by: Simon Glass
---
Changes in V2:
- None
include/fdtdec.h | 14 ++
lib/fdtdec.c | 12
2 files changed, 26 insertions(+), 0 deletions(-)
diff --git a/i
DMM_LISA_MAP registers program whether memory is mapped
on particular EMIF or not. Irrespective of these registers
EMIF is getting configured. Correcting the same.
Signed-off-by: Lokesh Vutla
---
arch/arm/cpu/armv7/omap-common/emif-common.c | 39 ++
1 file changed, 34 i
78 matches
Mail list logo