All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] BeagleBoard updates rebased on u-boot-ti and debugged
@ 2011-04-20 23:52 Jason Kridner
  2011-04-20 23:52 ` [U-Boot] [PATCH] BeagleBoard: add xM rev C to ID table Jason Kridner
  0 siblings, 1 reply; 39+ messages in thread
From: Jason Kridner @ 2011-04-20 23:52 UTC (permalink / raw)
  To: u-boot

This brings in some fixes and some patches currently maintained out-of-tree for the
BeagleBoard.  It seems for some things, some old code got applied, so I've given updates
here.  I've broken up the patches into small bits to be accepted/rejected on the hopes of
trying to get as much in as possible.

The USB patches placed in u-boot-ti aren't working for me, but this brings in some known
required patches.

Alexander Holler (1):
  BeagleBoard: config: Switch default console from ttyS2 to ttyO2

Bob Feretich (1):
  BeagleBoard: Pin mux initialization glitch fix

Jason Kridner (24):
  BeagleBoard: add xM rev C to ID table
  BeagleBoard: Fixed typo in typecast
  Corrected LED name match finding avoiding extraneous Usage printouts
  BeagleBoard: fix LED 0/1 in driver
  led: added cmd_led to Makefile
  led: correct off/on locations in structure
  led: remove trailing whitespace
  led: loop through all leds
  led: fixup help/usage
  BeagleBoard: config: reduce BOOTDELAY to 3
  BeagleBoard: config: change default resolution to VGA
  BeagleBoard: config: don't suck in blank line
  BeagleBoard: config: make mtest run
  BeagleBoard: config: increase command-line functionality
  BeagleBoard: config: load kernel via MMC ext2
  BeagleBoard: config: add optargs/buddy/camera
  BeagleBoard: config: add ramboot
  BeagleBoard: Added userbutton command
  BeagleBoard: config: use the USERBUTTON command
  video: DSS makefile update
  BeagleBoard: config: enable DSS
  BeagleBoard: Configure DVI/S-video
  USB: Remove __attribute__ ((packed)) for struct ehci_hccr and
    ehci_hcor
  TWL4030/BeagleBoard: Added hub power enable

Steve Sakoman (1):
  BeagleBoard: config: Remove omapfb.debug=y from Beagle and Overo env
    settings

Syed Mohammed Khasim (1):
  OMAP3: Add DSS driver for OMAP3

 arch/arm/include/asm/arch-omap3/dss.h |  173 +++++++++++++++++++++++++++++++++
 board/ti/beagle/beagle.c              |  119 +++++++++++++++++++++--
 board/ti/beagle/beagle.h              |   87 +++++++++++++++++
 board/ti/beagle/led.c                 |    4 +-
 common/Makefile                       |    1 +
 common/cmd_led.c                      |   18 ++--
 drivers/misc/twl4030_led.c            |    6 +-
 drivers/usb/host/ehci.h               |    4 +-
 drivers/video/Makefile                |    2 +
 drivers/video/omap3_dss.c             |  130 +++++++++++++++++++++++++
 include/configs/omap3_beagle.h        |   63 +++++++++---
 include/configs/omap3_overo.h         |    2 -
 include/twl4030.h                     |    1 +
 13 files changed, 572 insertions(+), 38 deletions(-)
 create mode 100644 arch/arm/include/asm/arch-omap3/dss.h
 create mode 100644 drivers/video/omap3_dss.c

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

end of thread, other threads:[~2011-08-04 21:14 UTC | newest]

Thread overview: 39+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-20 23:52 [U-Boot] [PATCH] BeagleBoard updates rebased on u-boot-ti and debugged Jason Kridner
2011-04-20 23:52 ` [U-Boot] [PATCH] BeagleBoard: add xM rev C to ID table Jason Kridner
2011-04-20 23:52   ` [U-Boot] [PATCH] BeagleBoard: fixed typo in typecast Jason Kridner
2011-04-20 23:52     ` [U-Boot] [PATCH] Corrected LED name match finding Jason Kridner
2011-04-20 23:52       ` [U-Boot] [PATCH] BeagleBoard: fix LED 0/1 in driver Jason Kridner
2011-04-20 23:52         ` [U-Boot] [PATCH] led: added cmd_led to Makefile Jason Kridner
2011-04-20 23:52           ` [U-Boot] [PATCH] led: correct off/on locations in structure Jason Kridner
2011-04-20 23:52             ` [U-Boot] [PATCH] led: remove trailing whitespace Jason Kridner
2011-04-20 23:52               ` [U-Boot] [PATCH] led: loop through all leds Jason Kridner
2011-04-20 23:52                 ` [U-Boot] [PATCH] led: fixup help/usage Jason Kridner
2011-04-20 23:52                   ` [U-Boot] [PATCH] BeagleBoard: Pin mux initialization glitch fix Jason Kridner
2011-04-20 23:52                     ` [U-Boot] [PATCH] BeagleBoard: config: Switch default console from ttyS2 to ttyO2 Jason Kridner
2011-04-20 23:52                       ` [U-Boot] [PATCH] BeagleBoard: config: Remove omapfb.debug=y from Beagle and Overo env settings Jason Kridner
2011-04-20 23:52                         ` [U-Boot] [PATCH] BeagleBoard: config: reduce BOOTDELAY to 3 Jason Kridner
2011-04-20 23:52                           ` [U-Boot] [PATCH] BeagleBoard: config: change default resolution to VGA Jason Kridner
2011-04-20 23:52                             ` [U-Boot] [PATCH] BeagleBoard: config: don't suck in blank line Jason Kridner
2011-04-20 23:52                               ` [U-Boot] [PATCH] BeagleBoard: config: make mtest run Jason Kridner
2011-04-20 23:52                                 ` [U-Boot] [PATCH] BeagleBoard: config: increase command-line functionality Jason Kridner
2011-04-20 23:52                                   ` [U-Boot] [PATCH] BeagleBoard: config: load kernel via MMC ext2 Jason Kridner
2011-04-20 23:52                                     ` [U-Boot] [PATCH] BeagleBoard: config: add optargs/buddy/camera Jason Kridner
2011-04-20 23:52                                       ` [U-Boot] [PATCH] BeagleBoard: config: add ramboot Jason Kridner
2011-04-20 23:52                                         ` [U-Boot] [PATCH v2] BeagleBoard: Added userbutton command Jason Kridner
2011-04-20 23:52                                           ` [U-Boot] [PATCH] BeagleBoard: config: use the USERBUTTON command Jason Kridner
2011-04-20 23:52                                             ` [U-Boot] [PATCH] video: DSS makefile update Jason Kridner
2011-04-20 23:52                                               ` [U-Boot] [PATCH v3] OMAP3: Add DSS driver for OMAP3 Jason Kridner
2011-04-20 23:52                                                 ` [U-Boot] [PATCH] BeagleBoard: config: enable DSS Jason Kridner
2011-04-20 23:52                                                   ` [U-Boot] [PATCH] BeagleBoard: Configure DVI/S-video Jason Kridner
2011-04-20 23:52                                                     ` [U-Boot] [PATCH v3] USB: Remove __attribute__ ((packed)) for struct ehci_hccr and ehci_hcor Jason Kridner
2011-04-20 23:52                                                       ` [U-Boot] [PATCH] TWL4030/BeagleBoard: Added hub power enable Jason Kridner
2011-04-21  6:29                                                       ` [U-Boot] [PATCH v3] USB: Remove __attribute__ ((packed)) for struct ehci_hccr and ehci_hcor Igor Grinberg
2011-04-21  6:26                                                     ` [U-Boot] [PATCH] BeagleBoard: Configure DVI/S-video Igor Grinberg
2011-07-04 21:58                                                 ` [U-Boot] [PATCH v3] OMAP3: Add DSS driver for OMAP3 Anatolij Gustschin
2011-08-04 20:54                                                 ` Wolfgang Denk
2011-08-04 21:14                                                   ` Jason Kridner
2011-08-04 21:02                                                 ` Wolfgang Denk
2011-07-04 21:51                                               ` [U-Boot] [PATCH] video: update Makefile to include OMAP3 DSS driver Anatolij Gustschin
2011-07-04 22:40                                                 ` Anatolij Gustschin
2011-04-21  5:58             ` [U-Boot] [PATCH] led: correct off/on locations in structure Igor Grinberg
2011-04-30  5:46     ` [U-Boot] [beagleboard] [PATCH] BeagleBoard: fixed typo in typecast Dirk Behme

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.