All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 00/11] ARM: mxs: Various MX23 adjustments
@ 2013-07-30 21:37 Marek Vasut
  2013-07-30 21:37 ` [U-Boot] [PATCH 01/11] dma: apbh: Add special circular mode for LCD Marek Vasut
                   ` (10 more replies)
  0 siblings, 11 replies; 45+ messages in thread
From: Marek Vasut @ 2013-07-30 21:37 UTC (permalink / raw)
  To: u-boot

This patchset implements support for two boards which I have. They have
some specific hardware requirements, so they are a nice benchmark for
U-Boot on MXS. The patchset can be broken into two parts:

First six patches add support for SanDisk Sansa Fuze+ and Creative X-Fi3,
both boards based on STMP3780. Note that the i.MX23 is a rebranded STMP3780
with updated BootROM.

The second part, consisting of five patches, adds smaller 4x6 font pulled
from Linux kernel and fixes CFB console to handle this font correctly.

NOTE: This patchset depends on http://patchwork.ozlabs.org/patch/263488/ ,
      which will hopefully be applied shortly.

Marek Vasut (11):
  dma: apbh: Add special circular mode for LCD
  video: Allocate the MXSFB framebuffer aligned
  video: Add System-Mode configuration hook into mxsfb
  video: Implement continuous screen refresh for SmartLCD into mxsfb
  ARM: mxs: Add Creative ZEN XFi3 board
  ARM: mxs: Add SanDisk Sansa Fuze+ board
  video: Encapsulate font in video_font_data.h
  video: Add small 4x6 font from Linux
  video: Fix cfb_console for 4-bit wide font
  ARM: mxs: Enable 4x6 font for X-Fi3
  ARM: mxs: Enable 4x6 font for Fuze+

 MAINTAINERS                              |    2 +
 arch/arm/include/asm/imx-common/dma.h    |    2 +
 arch/powerpc/cpu/mpc8xx/video.c          |    1 -
 board/creative/xfi3/Makefile             |   47 +
 board/creative/xfi3/spl_boot.c           |  150 +++
 board/creative/xfi3/xfi3.c               |  221 +++
 board/sandisk/sansa_fuze_plus/Makefile   |   47 +
 board/sandisk/sansa_fuze_plus/sfp.c      |  386 ++++++
 board/sandisk/sansa_fuze_plus/spl_boot.c |  155 +++
 boards.cfg                               |    2 +
 common/lcd.c                             |    1 -
 drivers/dma/apbh_dma.c                   |   22 +
 drivers/video/cfb_console.c              |   22 +-
 drivers/video/mxsfb.c                    |   45 +-
 drivers/video/sed156x.c                  |    1 -
 include/configs/sansa_fuze_plus.h        |   84 ++
 include/configs/xfi3.h                   |   83 ++
 include/video_font.h                     |    9 +-
 include/video_font_4x6.h                 | 2154 ++++++++++++++++++++++++++++++
 include/video_font_data.h                |    5 +
 20 files changed, 3430 insertions(+), 9 deletions(-)
 create mode 100644 board/creative/xfi3/Makefile
 create mode 100644 board/creative/xfi3/spl_boot.c
 create mode 100644 board/creative/xfi3/xfi3.c
 create mode 100644 board/sandisk/sansa_fuze_plus/Makefile
 create mode 100644 board/sandisk/sansa_fuze_plus/sfp.c
 create mode 100644 board/sandisk/sansa_fuze_plus/spl_boot.c
 create mode 100644 include/configs/sansa_fuze_plus.h
 create mode 100644 include/configs/xfi3.h
 create mode 100644 include/video_font_4x6.h

Cc: Anatolij Gustschin <agust@denx.de>
Cc: Fabio Estevam <fabio.estevam@freescale.com>
Cc: Otavio Salvador <otavio@ossystems.com.br>
Cc: Stefano Babic <sbabic@denx.de>
-- 
1.7.10.4

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

end of thread, other threads:[~2013-08-12 20:44 UTC | newest]

Thread overview: 45+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-07-30 21:37 [U-Boot] [PATCH 00/11] ARM: mxs: Various MX23 adjustments Marek Vasut
2013-07-30 21:37 ` [U-Boot] [PATCH 01/11] dma: apbh: Add special circular mode for LCD Marek Vasut
2013-08-09 19:50   ` Anatolij Gustschin
2013-07-30 21:37 ` [U-Boot] [PATCH 02/11] video: Allocate the MXSFB framebuffer aligned Marek Vasut
2013-08-09 19:50   ` Anatolij Gustschin
2013-07-30 21:37 ` [U-Boot] [PATCH 03/11] video: Add System-Mode configuration hook into mxsfb Marek Vasut
2013-07-30 21:46   ` Otavio Salvador
2013-07-30 22:45     ` Marek Vasut
2013-07-30 22:48       ` Otavio Salvador
2013-07-30 23:31         ` Marek Vasut
2013-07-31 13:19   ` Stefano Babic
2013-07-31 13:22     ` Marek Vasut
2013-07-31 15:05       ` Stefano Babic
2013-07-31 15:14         ` Marek Vasut
2013-08-09 19:51   ` Anatolij Gustschin
2013-07-30 21:37 ` [U-Boot] [PATCH 04/11] video: Implement continuous screen refresh for SmartLCD " Marek Vasut
2013-08-09 19:51   ` Anatolij Gustschin
2013-07-30 21:37 ` [U-Boot] [PATCH 05/11] ARM: mxs: Add Creative ZEN XFi3 board Marek Vasut
2013-07-30 21:49   ` Otavio Salvador
2013-07-30 22:46     ` Marek Vasut
2013-07-30 22:49       ` Otavio Salvador
2013-07-30 23:36         ` Marek Vasut
2013-07-31 12:57           ` Otavio Salvador
2013-07-31  5:59   ` Heiko Schocher
2013-07-31 10:33     ` Marek Vasut
2013-07-31 15:00   ` Stefano Babic
2013-07-31 15:09     ` Marek Vasut
2013-07-31 19:30   ` Wolfgang Denk
2013-07-31 20:16     ` Marek Vasut
2013-07-30 21:37 ` [U-Boot] [PATCH 06/11] ARM: mxs: Add SanDisk Sansa Fuze+ board Marek Vasut
2013-07-31 19:32   ` Wolfgang Denk
2013-07-31 19:41     ` Marek Vasut
2013-07-30 21:37 ` [U-Boot] [PATCH 07/11] video: Encapsulate font in video_font_data.h Marek Vasut
2013-08-10  7:19   ` Anatolij Gustschin
2013-08-11 17:29     ` Marek Vasut
2013-08-12 20:43   ` Anatolij Gustschin
2013-07-30 21:37 ` [U-Boot] [PATCH 08/11] video: Add small 4x6 font from Linux Marek Vasut
2013-08-12 20:44   ` Anatolij Gustschin
2013-07-30 21:37 ` [U-Boot] [PATCH 09/11] video: Fix cfb_console for 4-bit wide font Marek Vasut
2013-08-10  7:24   ` Anatolij Gustschin
2013-07-30 21:38 ` [U-Boot] [PATCH 10/11] ARM: mxs: Enable 4x6 font for X-Fi3 Marek Vasut
2013-07-31 15:01   ` Stefano Babic
2013-07-31 15:15     ` Marek Vasut
2013-07-31 16:08       ` Stefano Babic
2013-07-30 21:38 ` [U-Boot] [PATCH 11/11] ARM: mxs: Enable 4x6 font for Fuze+ Marek Vasut

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.