[U-Boot] [PATCH 00/11] ARM: mxs: Various MX23 adjustments

Marek Vasut marex at denx.de
Tue Jul 30 23:37:50 CEST 2013


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 at denx.de>
Cc: Fabio Estevam <fabio.estevam at freescale.com>
Cc: Otavio Salvador <otavio at ossystems.com.br>
Cc: Stefano Babic <sbabic at denx.de>
-- 
1.7.10.4



More information about the U-Boot mailing list