public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 0/6] iPAQ h2200 support
@ 2012-09-19 19:38 Łukasz Dałek
  2012-09-19 19:38 ` [U-Boot] [PATCH 1/6] h2200: Add support for iPAQ h2200 Łukasz Dałek
                   ` (7 more replies)
  0 siblings, 8 replies; 39+ messages in thread
From: Łukasz Dałek @ 2012-09-19 19:38 UTC (permalink / raw)
  To: u-boot

This is set of patches adding support for iPAQ h2200 device

Ad. [PATCH 1/6] h2200: Add support for iPAQ h2200
I've added device id to the mach-types.h file. But I'm pretty
sure this is the bad way. The id I took from
http://www.arm.linux.org.uk/developer/machines/list.php?id=341

Device's 1st stage bootloader requires from 2nd stage loader
specific header which I've defined in file h2200-header.S.
For now it is build to h2200-header.bin which has to be concatenated
with u-boot.bin (cat h2200-header.bin u-boot.bin > u-boot.rdy).
I don't know how I can do this another way.

One more, can I add to device folder program which generates packed
binary with header which device's rescue bootloader can flash
into memory?

Ad. [PATCH 3/6] pxa: Add some stuff to examine cpu model and rev
This patch shuld be already in pxa tree but it's not. Maybe I
overlooked or sth. If so I'm sorry for sending it again.

?ukasz Da?ek (6):
  h2200: Add support for iPAQ h2200
  pxa25x: Add USB Ethernet driver
  pxa: Add some stuff to examine cpu model and rev
  usbether: Fixed bug when using with PXA25X chips
  usbether: Define CONFIG_USB_ETH_{CDC,SUBSET}
  usbether: Removed DEV_CONFIG_{CDC,SUBSET}

 arch/arm/cpu/pxa/cpuinfo.c          |   11 +-
 arch/arm/include/asm/arch-pxa/pxa.h |   13 +
 arch/arm/include/asm/mach-types.h   |    1 +
 board/h2200/Makefile                |   51 +
 board/h2200/h2200-header.S          |   27 +
 board/h2200/h2200.c                 |  197 ++++
 board/h2200/h2200.h                 |   28 +
 boards.cfg                          |    2 +
 drivers/usb/gadget/Makefile         |    1 +
 drivers/usb/gadget/ether.c          |   69 +-
 drivers/usb/gadget/pxa25x_udc.c     | 2059 +++++++++++++++++++++++++++++++++++
 drivers/usb/gadget/pxa25x_udc.h     |  162 +++
 include/configs/h2200.h             |  168 +++
 13 files changed, 2757 insertions(+), 32 deletions(-)
 create mode 100644 board/h2200/Makefile
 create mode 100644 board/h2200/h2200-header.S
 create mode 100644 board/h2200/h2200.c
 create mode 100644 board/h2200/h2200.h
 create mode 100644 drivers/usb/gadget/pxa25x_udc.c
 create mode 100644 drivers/usb/gadget/pxa25x_udc.h
 create mode 100644 include/configs/h2200.h

-- 
1.7.8.6

^ permalink raw reply	[flat|nested] 39+ messages in thread

end of thread, other threads:[~2012-09-22 18:47 UTC | newest]

Thread overview: 39+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-19 19:38 [U-Boot] [PATCH 0/6] iPAQ h2200 support Łukasz Dałek
2012-09-19 19:38 ` [U-Boot] [PATCH 1/6] h2200: Add support for iPAQ h2200 Łukasz Dałek
2012-09-19 21:02   ` Marek Vasut
     [not found]     ` <505A3B2B.6080907@gmail.com>
2012-09-19 21:43       ` Marek Vasut
2012-09-19 21:54         ` Łukasz Dałek
2012-09-19 22:01           ` Marek Vasut
2012-09-19 22:16             ` Łukasz Dałek
2012-09-19 22:42               ` Marek Vasut
2012-09-19 22:51                 ` Łukasz Dałek
2012-09-19 22:56                   ` Marek Vasut
2012-09-19 23:07                     ` Łukasz Dałek
2012-09-19 23:09                       ` Marek Vasut
2012-09-19 23:20                         ` Łukasz Dałek
2012-09-19 23:25                           ` Marek Vasut
2012-09-19 23:36                             ` Łukasz Dałek
2012-09-19 23:43                               ` Marek Vasut
2012-09-19 23:51                                 ` Łukasz Dałek
2012-09-20  0:06                                   ` Marek Vasut
2012-09-20  5:49     ` Joe Hershberger
2012-09-20 12:14       ` Marek Vasut
2012-09-22 17:02     ` Łukasz Dałek
2012-09-22 17:04       ` Marek Vasut
2012-09-22 17:16         ` Łukasz Dałek
2012-09-22 18:00           ` Marek Vasut
2012-09-22 18:07             ` Łukasz Dałek
2012-09-22 18:21               ` Marek Vasut
2012-09-22 18:34                 ` Łukasz Dałek
2012-09-22 18:37                   ` Marek Vasut
2012-09-22 18:47                     ` Łukasz Dałek
2012-09-19 19:38 ` [U-Boot] [PATCH 2/6] pxa25x: Add USB Ethernet driver Łukasz Dałek
2012-09-19 21:03   ` Marek Vasut
     [not found]     ` <505A386D.7080302@gmail.com>
2012-09-19 21:39       ` Marek Vasut
2012-09-19 19:38 ` [U-Boot] [PATCH 3/6] pxa: Add some stuff to examine cpu model and rev Łukasz Dałek
2012-09-19 21:04   ` Marek Vasut
2012-09-19 19:38 ` [U-Boot] [PATCH 4/6] usbether: Fixed bug when using with PXA25X chips Łukasz Dałek
2012-09-19 19:38 ` [U-Boot] [PATCH 5/6] usbether: Define CONFIG_USB_ETH_{CDC,SUBSET} Łukasz Dałek
2012-09-19 19:38 ` [U-Boot] [PATCH 6/6] usbether: Removed DEV_CONFIG_{CDC,SUBSET} Łukasz Dałek
2012-09-19 23:10 ` [U-Boot] [PATCH 0/6] iPAQ h2200 support Marek Vasut
2012-09-20  6:36 ` Andreas Bießmann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox