* [U-Boot] Please pull u-boot-i2c.git updated
@ 2009-07-28 10:38 Heiko Schocher
2009-07-29 7:39 ` Wolfgang Denk
0 siblings, 1 reply; 5+ messages in thread
From: Heiko Schocher @ 2009-07-28 10:38 UTC (permalink / raw)
To: u-boot
Hello Wolfgang,
The following changes since commit 94978e19f31d225b4f7d97c4acbac1ecfaeb8f69:
Wolfgang Denk (1):
Prepare 2009.08-rc1 (again, after fixing last minute issues).
are available in the git repository at:
git://git.denx.de/u-boot-i2c.git master
Alessandro Rubini (2):
arm nomadik: add gpio support
arm nomadik: add i2c
Heiko Schocher (2):
arm, i2c: added support for the TWSI I2C Interface
Because twl4030 now has its own device files, move exiting
Tom Rix (5):
OMAP I2C Fix the sampling clock.
TWL4030 Add initial support
TWL4030 Add power reset button
OMAP3 Move twl4030 mmc function
OMAP3 Remove twl4030 defines
Makefile | 1 +
board/omap3/beagle/beagle.c | 4 +-
board/omap3/common/power.c | 74 ----
board/omap3/overo/overo.c | 4 +-
board/omap3/pandora/pandora.c | 4 +-
board/omap3/zoom1/zoom1.c | 12 +-
board/omap3/zoom2/zoom2.c | 17 +-
board/st/nhk8815/nhk8815.c | 16 +-
cpu/arm926ejs/nomadik/Makefile | 2 +-
cpu/arm926ejs/nomadik/gpio.c | 99 +++++
drivers/i2c/Makefile | 1 +
drivers/i2c/kirkwood_i2c.c | 484 ++++++++++++++++++++++++
drivers/i2c/omap24xx_i2c.c | 74 ++++-
drivers/misc/Makefile | 1 +
drivers/misc/twl4030_led.c | 52 +++
drivers/mmc/omap3_mmc.c | 13 +-
{board/omap3/common => drivers/power}/Makefile | 25 +-
drivers/power/twl4030.c | 115 ++++++
include/asm-arm/arch-nomadik/gpio.h | 42 ++
include/asm-arm/arch-omap24xx/i2c.h | 44 +++
include/asm-arm/arch-omap3/i2c.h | 70 +++-
include/asm-arm/arch-omap3/omap3.h | 35 --
include/configs/nhk8815.h | 18 +-
include/configs/omap3_beagle.h | 6 +
include/configs/omap3_evm.h | 5 +
include/configs/omap3_overo.h | 6 +
include/configs/omap3_pandora.h | 6 +
include/configs/omap3_zoom1.h | 6 +
include/configs/omap3_zoom2.h | 6 +
include/twl4030.h | 401 ++++++++++++++++++++
30 files changed, 1484 insertions(+), 159 deletions(-)
delete mode 100644 board/omap3/common/power.c
create mode 100644 cpu/arm926ejs/nomadik/gpio.c
create mode 100644 drivers/i2c/kirkwood_i2c.c
create mode 100644 drivers/misc/twl4030_led.c
rename {board/omap3/common => drivers/power}/Makefile (67%)
create mode 100644 drivers/power/twl4030.c
create mode 100644 include/asm-arm/arch-nomadik/gpio.h
create mode 100644 include/twl4030.h
thanks
bye
Heiko
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
^ permalink raw reply [flat|nested] 5+ messages in thread
* [U-Boot] Please pull u-boot-i2c.git updated
2009-07-28 10:38 [U-Boot] Please pull u-boot-i2c.git updated Heiko Schocher
@ 2009-07-29 7:39 ` Wolfgang Denk
2009-07-29 7:54 ` Heiko Schocher
0 siblings, 1 reply; 5+ messages in thread
From: Wolfgang Denk @ 2009-07-29 7:39 UTC (permalink / raw)
To: u-boot
Dear Heiko Schocher,
In message <4A6ED511.6010107@denx.de> you wrote:
> Hello Wolfgang,
>
> The following changes since commit 94978e19f31d225b4f7d97c4acbac1ecfaeb8f69:
> Wolfgang Denk (1):
> Prepare 2009.08-rc1 (again, after fixing last minute issues).
>
> are available in the git repository at:
>
> git://git.denx.de/u-boot-i2c.git master
>
> Alessandro Rubini (2):
> arm nomadik: add gpio support
> arm nomadik: add i2c
>
> Heiko Schocher (2):
> arm, i2c: added support for the TWSI I2C Interface
> Because twl4030 now has its own device files, move exiting
Not pulled again because of this obscure commit.
Best regards,
Wolfgang Denk
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
No problem is insoluble.
-- Dr. Janet Wallace, "The Deadly Years", stardate 3479.4
^ permalink raw reply [flat|nested] 5+ messages in thread
* [U-Boot] Please pull u-boot-i2c.git updated
2009-07-29 7:39 ` Wolfgang Denk
@ 2009-07-29 7:54 ` Heiko Schocher
2009-07-29 8:09 ` [U-Boot] Please pull u-boot-i2c.git updated v2 Heiko Schocher
0 siblings, 1 reply; 5+ messages in thread
From: Heiko Schocher @ 2009-07-29 7:54 UTC (permalink / raw)
To: u-boot
Hello Wolfgang,
Wolfgang Denk wrote:
> In message <4A6ED511.6010107@denx.de> you wrote:
>> Hello Wolfgang,
>>
>> The following changes since commit 94978e19f31d225b4f7d97c4acbac1ecfaeb8f69:
>> Wolfgang Denk (1):
>> Prepare 2009.08-rc1 (again, after fixing last minute issues).
>>
>> are available in the git repository at:
>>
>> git://git.denx.de/u-boot-i2c.git master
>>
>> Alessandro Rubini (2):
>> arm nomadik: add gpio support
>> arm nomadik: add i2c
>>
>> Heiko Schocher (2):
>> arm, i2c: added support for the TWSI I2C Interface
>> Because twl4030 now has its own device files, move exiting
>
> Not pulled again because of this obscure commit.
Hups ... Sorry ... I look for this issue ...
bye
Heiko
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
^ permalink raw reply [flat|nested] 5+ messages in thread
* [U-Boot] Please pull u-boot-i2c.git updated v2
2009-07-29 7:54 ` Heiko Schocher
@ 2009-07-29 8:09 ` Heiko Schocher
2009-07-29 22:36 ` Wolfgang Denk
0 siblings, 1 reply; 5+ messages in thread
From: Heiko Schocher @ 2009-07-29 8:09 UTC (permalink / raw)
To: u-boot
Hello Wolfgang,
Heiko Schocher wrote:
> Wolfgang Denk wrote:
>> In message <4A6ED511.6010107@denx.de> you wrote:
>>> Hello Wolfgang,
>>>
>>> The following changes since commit 94978e19f31d225b4f7d97c4acbac1ecfaeb8f69:
>>> Wolfgang Denk (1):
>>> Prepare 2009.08-rc1 (again, after fixing last minute issues).
>>>
>>> are available in the git repository at:
>>>
>>> git://git.denx.de/u-boot-i2c.git master
>>>
>>> Alessandro Rubini (2):
>>> arm nomadik: add gpio support
>>> arm nomadik: add i2c
>>>
>>> Heiko Schocher (2):
>>> arm, i2c: added support for the TWSI I2C Interface
>>> Because twl4030 now has its own device files, move exiting
>> Not pulled again because of this obscure commit.
>
> Hups ... Sorry ... I look for this issue ...
Here comes the right version ... sorry for the confusion.
The following changes since commit 94978e19f31d225b4f7d97c4acbac1ecfaeb8f69:
Wolfgang Denk (1):
Prepare 2009.08-rc1 (again, after fixing last minute issues).
are available in the git repository at:
git://git.denx.de/u-boot-i2c.git master
Alessandro Rubini (2):
arm nomadik: add gpio support
arm nomadik: add i2c
Heiko Schocher (1):
arm, i2c: added support for the TWSI I2C Interface
Tom Rix (6):
OMAP I2C Fix the sampling clock.
TWL4030 Add initial support
TWL4030 Add power reset button
OMAP3 Move twl4030 power and led functions
OMAP3 Move twl4030 mmc function
OMAP3 Remove twl4030 defines
Makefile | 1 +
board/omap3/beagle/beagle.c | 4 +-
board/omap3/common/power.c | 74 ----
board/omap3/overo/overo.c | 4 +-
board/omap3/pandora/pandora.c | 4 +-
board/omap3/zoom1/zoom1.c | 12 +-
board/omap3/zoom2/zoom2.c | 17 +-
board/st/nhk8815/nhk8815.c | 16 +-
cpu/arm926ejs/nomadik/Makefile | 2 +-
cpu/arm926ejs/nomadik/gpio.c | 99 +++++
drivers/i2c/Makefile | 1 +
drivers/i2c/kirkwood_i2c.c | 484 ++++++++++++++++++++++++
drivers/i2c/omap24xx_i2c.c | 74 ++++-
drivers/misc/Makefile | 1 +
drivers/misc/twl4030_led.c | 52 +++
drivers/mmc/omap3_mmc.c | 13 +-
{board/omap3/common => drivers/power}/Makefile | 25 +-
drivers/power/twl4030.c | 115 ++++++
include/asm-arm/arch-nomadik/gpio.h | 42 ++
include/asm-arm/arch-omap24xx/i2c.h | 44 +++
include/asm-arm/arch-omap3/i2c.h | 70 +++-
include/asm-arm/arch-omap3/omap3.h | 35 --
include/configs/nhk8815.h | 18 +-
include/configs/omap3_beagle.h | 6 +
include/configs/omap3_evm.h | 5 +
include/configs/omap3_overo.h | 6 +
include/configs/omap3_pandora.h | 6 +
include/configs/omap3_zoom1.h | 6 +
include/configs/omap3_zoom2.h | 6 +
include/twl4030.h | 401 ++++++++++++++++++++
30 files changed, 1484 insertions(+), 159 deletions(-)
delete mode 100644 board/omap3/common/power.c
create mode 100644 cpu/arm926ejs/nomadik/gpio.c
create mode 100644 drivers/i2c/kirkwood_i2c.c
create mode 100644 drivers/misc/twl4030_led.c
rename {board/omap3/common => drivers/power}/Makefile (67%)
create mode 100644 drivers/power/twl4030.c
create mode 100644 include/asm-arm/arch-nomadik/gpio.h
create mode 100644 include/twl4030.h
bye
heiko
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
^ permalink raw reply [flat|nested] 5+ messages in thread
* [U-Boot] Please pull u-boot-i2c.git updated v2
2009-07-29 8:09 ` [U-Boot] Please pull u-boot-i2c.git updated v2 Heiko Schocher
@ 2009-07-29 22:36 ` Wolfgang Denk
0 siblings, 0 replies; 5+ messages in thread
From: Wolfgang Denk @ 2009-07-29 22:36 UTC (permalink / raw)
To: u-boot
Dear Heiko Schocher,
In message <4A7003A4.2050605@denx.de> you wrote:
> Hello Wolfgang,
>
> Heiko Schocher wrote:
> > Wolfgang Denk wrote:
> >> In message <4A6ED511.6010107@denx.de> you wrote:
> >>> Hello Wolfgang,
> >>>
> >>> The following changes since commit 94978e19f31d225b4f7d97c4acbac1ecfaeb8f69:
> >>> Wolfgang Denk (1):
> >>> Prepare 2009.08-rc1 (again, after fixing last minute issues).
> >>>
> >>> are available in the git repository at:
> >>>
> >>> git://git.denx.de/u-boot-i2c.git master
> >>>
> >>> Alessandro Rubini (2):
> >>> arm nomadik: add gpio support
> >>> arm nomadik: add i2c
> >>>
> >>> Heiko Schocher (2):
> >>> arm, i2c: added support for the TWSI I2C Interface
> >>> Because twl4030 now has its own device files, move exiting
> >> Not pulled again because of this obscure commit.
> >
> > Hups ... Sorry ... I look for this issue ...
>
> Here comes the right version ... sorry for the confusion.
>
> The following changes since commit 94978e19f31d225b4f7d97c4acbac1ecfaeb8f69:
> Wolfgang Denk (1):
> Prepare 2009.08-rc1 (again, after fixing last minute issues).
>
> are available in the git repository at:
>
> git://git.denx.de/u-boot-i2c.git master
>
> Alessandro Rubini (2):
> arm nomadik: add gpio support
> arm nomadik: add i2c
>
> Heiko Schocher (1):
> arm, i2c: added support for the TWSI I2C Interface
>
> Tom Rix (6):
> OMAP I2C Fix the sampling clock.
> TWL4030 Add initial support
> TWL4030 Add power reset button
> OMAP3 Move twl4030 power and led functions
> OMAP3 Move twl4030 mmc function
> OMAP3 Remove twl4030 defines
>
> Makefile | 1 +
> board/omap3/beagle/beagle.c | 4 +-
> board/omap3/common/power.c | 74 ----
> board/omap3/overo/overo.c | 4 +-
> board/omap3/pandora/pandora.c | 4 +-
> board/omap3/zoom1/zoom1.c | 12 +-
> board/omap3/zoom2/zoom2.c | 17 +-
> board/st/nhk8815/nhk8815.c | 16 +-
> cpu/arm926ejs/nomadik/Makefile | 2 +-
> cpu/arm926ejs/nomadik/gpio.c | 99 +++++
> drivers/i2c/Makefile | 1 +
> drivers/i2c/kirkwood_i2c.c | 484 ++++++++++++++++++++++++
> drivers/i2c/omap24xx_i2c.c | 74 ++++-
> drivers/misc/Makefile | 1 +
> drivers/misc/twl4030_led.c | 52 +++
> drivers/mmc/omap3_mmc.c | 13 +-
> {board/omap3/common => drivers/power}/Makefile | 25 +-
> drivers/power/twl4030.c | 115 ++++++
> include/asm-arm/arch-nomadik/gpio.h | 42 ++
> include/asm-arm/arch-omap24xx/i2c.h | 44 +++
> include/asm-arm/arch-omap3/i2c.h | 70 +++-
> include/asm-arm/arch-omap3/omap3.h | 35 --
> include/configs/nhk8815.h | 18 +-
> include/configs/omap3_beagle.h | 6 +
> include/configs/omap3_evm.h | 5 +
> include/configs/omap3_overo.h | 6 +
> include/configs/omap3_pandora.h | 6 +
> include/configs/omap3_zoom1.h | 6 +
> include/configs/omap3_zoom2.h | 6 +
> include/twl4030.h | 401 ++++++++++++++++++++
> 30 files changed, 1484 insertions(+), 159 deletions(-)
> delete mode 100644 board/omap3/common/power.c
> create mode 100644 cpu/arm926ejs/nomadik/gpio.c
> create mode 100644 drivers/i2c/kirkwood_i2c.c
> create mode 100644 drivers/misc/twl4030_led.c
> rename {board/omap3/common => drivers/power}/Makefile (67%)
> create mode 100644 drivers/power/twl4030.c
> create mode 100644 include/asm-arm/arch-nomadik/gpio.h
> create mode 100644 include/twl4030.h
Applied, thanks.
Best regards,
Wolfgang Denk
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
KLB is an acronym for `Known Lazy Bastard', aka non-FAQ reader, aka
person who would rather make someone take their time to explain
something basic than look it up in a FAQ.
-- Tom Christiansen in <6aq547$mnr$2@csnews.cs.colorado.edu>
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2009-07-29 22:36 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-28 10:38 [U-Boot] Please pull u-boot-i2c.git updated Heiko Schocher
2009-07-29 7:39 ` Wolfgang Denk
2009-07-29 7:54 ` Heiko Schocher
2009-07-29 8:09 ` [U-Boot] Please pull u-boot-i2c.git updated v2 Heiko Schocher
2009-07-29 22:36 ` Wolfgang Denk
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox