public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] Please pull u-boot-video/next
@ 2010-06-14 20:29 Anatolij Gustschin
  2010-06-17 21:10 ` Wolfgang Denk
  0 siblings, 1 reply; 10+ messages in thread
From: Anatolij Gustschin @ 2010-06-14 20:29 UTC (permalink / raw)
  To: u-boot

Dear Wolfgang,

The following changes since commit a6862bc123a9e6c93583879973679b0c5941a418:
  Wolfgang Denk (1):
        Makefile/mkconfig: read simple board configurations from boards.cfg

are available in the git repository at:

  git://git.denx.de/u-boot-video.git next

Anatolij Gustschin (3):
      video: cfb_console: add weak default video_set_lut()
      video: sm501: add support for SM501 chips on PCI bus
      video: sm501.c: add weak default functions

 arch/powerpc/cpu/mpc512x/diu.c                |   14 ---
 board/freescale/mpc8610hpcd/mpc8610hpcd_diu.c |    9 --
 drivers/video/cfb_console.c                   |   12 +++
 drivers/video/sm501.c                         |  130 +++++++++++++++++++++----
 include/pci_ids.h                             |    1 +
 5 files changed, 125 insertions(+), 41 deletions(-)

Best regards,
Anatolij

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

* [U-Boot] Please pull u-boot-video/next
  2010-06-14 20:29 Anatolij Gustschin
@ 2010-06-17 21:10 ` Wolfgang Denk
  0 siblings, 0 replies; 10+ messages in thread
From: Wolfgang Denk @ 2010-06-17 21:10 UTC (permalink / raw)
  To: u-boot

Dear Anatolij Gustschin,

In message <20100614222902.6e23fdc0@wker> you wrote:
> Dear Wolfgang,
> 
> The following changes since commit a6862bc123a9e6c93583879973679b0c5941a418:
>   Wolfgang Denk (1):
>         Makefile/mkconfig: read simple board configurations from boards.cfg
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-video.git next
> 
> Anatolij Gustschin (3):
>       video: cfb_console: add weak default video_set_lut()
>       video: sm501: add support for SM501 chips on PCI bus
>       video: sm501.c: add weak default functions
> 
>  arch/powerpc/cpu/mpc512x/diu.c                |   14 ---
>  board/freescale/mpc8610hpcd/mpc8610hpcd_diu.c |    9 --
>  drivers/video/cfb_console.c                   |   12 +++
>  drivers/video/sm501.c                         |  130 +++++++++++++++++++++----
>  include/pci_ids.h                             |    1 +
>  5 files changed, 125 insertions(+), 41 deletions(-)

Applied to "next" branch, 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
"Plan to throw one away. You will anyway."
                              - Fred Brooks, "The Mythical Man Month"

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

* [U-Boot] Please pull u-boot-video/next
@ 2010-09-21 22:47 Anatolij Gustschin
  2010-09-22 20:49 ` Wolfgang Denk
  0 siblings, 1 reply; 10+ messages in thread
From: Anatolij Gustschin @ 2010-09-21 22:47 UTC (permalink / raw)
  To: u-boot

Dear Wolfgang,

The following changes since commit d70d8ccc200db8c16a6654cb726c3d74b6640b32:
  Kim Phillips (1):
        silence config step commands display during MAKEALL builds

are available in the git repository at:

  git://git.denx.de/u-boot-video.git next

Timur Tabi (3):
      logos: add Freescale logo
      video: cfb_console: add support for 4bpp bitmaps with GDF_32BIT_X888RGB
      fsl: refactor MPC8610 and MPC5121 DIU code to use existing bitmap and logo features

 arch/powerpc/cpu/mpc512x/Makefile             |    1 -
 arch/powerpc/cpu/mpc512x/diu.c                |   68 +--
 board/freescale/common/Makefile               |    2 +-
 board/freescale/common/fsl_diu_fb.c           |  132 +----
 board/freescale/common/fsl_diu_fb.h           |   12 +-
 board/freescale/common/fsl_logo_bmp.c         |  878 -------------------------
 board/freescale/mpc5121ads/mpc5121ads.c       |    5 -
 board/freescale/mpc8610hpcd/mpc8610hpcd.c     |    6 +-
 board/freescale/mpc8610hpcd/mpc8610hpcd_diu.c |   78 +--
 drivers/video/cfb_console.c                   |   38 +-
 include/configs/MPC8610HPCD.h                 |    5 +-
 include/configs/mpc5121ads.h                  |    6 +-
 tools/Makefile                                |    3 +
 tools/logos/freescale.bmp                     |  Bin 0 -> 46738 bytes
 14 files changed, 77 insertions(+), 1157 deletions(-)
 delete mode 100644 board/freescale/common/fsl_logo_bmp.c
 create mode 100644 tools/logos/freescale.bmp

Thanks,
Anatolij

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

* [U-Boot] Please pull u-boot-video/next
  2010-09-21 22:47 Anatolij Gustschin
@ 2010-09-22 20:49 ` Wolfgang Denk
  0 siblings, 0 replies; 10+ messages in thread
From: Wolfgang Denk @ 2010-09-22 20:49 UTC (permalink / raw)
  To: u-boot

Dear Anatolij Gustschin,

In message <20100922004749.60ec51ae@wker> you wrote:
> Dear Wolfgang,
> 
> The following changes since commit d70d8ccc200db8c16a6654cb726c3d74b6640b32:
>   Kim Phillips (1):
>         silence config step commands display during MAKEALL builds
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-video.git next
> 
> Timur Tabi (3):
>       logos: add Freescale logo
>       video: cfb_console: add support for 4bpp bitmaps with GDF_32BIT_X888RGB
>       fsl: refactor MPC8610 and MPC5121 DIU code to use existing bitmap and logo features
> 
>  arch/powerpc/cpu/mpc512x/Makefile             |    1 -
>  arch/powerpc/cpu/mpc512x/diu.c                |   68 +--
>  board/freescale/common/Makefile               |    2 +-
>  board/freescale/common/fsl_diu_fb.c           |  132 +----
>  board/freescale/common/fsl_diu_fb.h           |   12 +-
>  board/freescale/common/fsl_logo_bmp.c         |  878 -------------------------
>  board/freescale/mpc5121ads/mpc5121ads.c       |    5 -
>  board/freescale/mpc8610hpcd/mpc8610hpcd.c     |    6 +-
>  board/freescale/mpc8610hpcd/mpc8610hpcd_diu.c |   78 +--
>  drivers/video/cfb_console.c                   |   38 +-
>  include/configs/MPC8610HPCD.h                 |    5 +-
>  include/configs/mpc5121ads.h                  |    6 +-
>  tools/Makefile                                |    3 +
>  tools/logos/freescale.bmp                     |  Bin 0 -> 46738 bytes
>  14 files changed, 77 insertions(+), 1157 deletions(-)
>  delete mode 100644 board/freescale/common/fsl_logo_bmp.c
>  create mode 100644 tools/logos/freescale.bmp

Applied to "next", 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
You Don't Have To Be 'Damned' To Work Here, But It Helps!!!
                                             - Terry Pratchett, _Eric_

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

* [U-Boot] Please pull u-boot-video/next
@ 2010-09-27 19:24 Anatolij Gustschin
  2010-10-05 12:32 ` Wolfgang Denk
  0 siblings, 1 reply; 10+ messages in thread
From: Anatolij Gustschin @ 2010-09-27 19:24 UTC (permalink / raw)
  To: u-boot

Dear Wolfgang,

The following changes since commit 6aa3d3bfaa986f1aff5e21a9b9f68d087715b1a9:
  Peter Tyser (1):
        83xx: Remove warmboot parameter from PCI init functions

are available in the git repository at:

  git://git.denx.de/u-boot-video.git next

Alexander Stein (1):
      atmel_lcd: Allow contrast polarity to be either positive or negative

Anatolij Gustschin (1):
      fsl_diu_fb: further refactoring of FSL DIU code

Timur Tabi (2):
      p1022ds: add video support
      p1022ds: use weak CFI flash accessors when DIU is enabled

 arch/powerpc/cpu/mpc512x/diu.c                   |   62 +----
 board/davedenx/aria/aria.c                       |    5 -
 board/freescale/common/fsl_diu_fb.c              |   41 +++-
 board/freescale/mpc8610hpcd/mpc8610hpcd_diu.c    |   74 +-----
 board/freescale/p1022ds/Makefile                 |    2 +
 board/freescale/p1022ds/diu.c                    |  304 ++++++++++++++++++++++
 board/pdm360ng/pdm360ng.c                        |    3 -
 drivers/video/atmel_lcdfb.c                      |    3 +-
 include/configs/P1022DS.h                        |   19 +-
 {board/freescale/common => include}/fsl_diu_fb.h |    1 +
 include/lcd.h                                    |    1 +
 11 files changed, 382 insertions(+), 133 deletions(-)
 create mode 100644 board/freescale/p1022ds/diu.c
 rename {board/freescale/common => include}/fsl_diu_fb.h (97%)

Thanks,
Anatolij

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

* [U-Boot] Please pull u-boot-video/next
  2010-09-27 19:24 [U-Boot] Please pull u-boot-video/next Anatolij Gustschin
@ 2010-10-05 12:32 ` Wolfgang Denk
  0 siblings, 0 replies; 10+ messages in thread
From: Wolfgang Denk @ 2010-10-05 12:32 UTC (permalink / raw)
  To: u-boot

Dear Anatolij Gustschin,

In message <20100927212457.4051aa0e@wker> you wrote:
> Dear Wolfgang,
> 
> The following changes since commit 6aa3d3bfaa986f1aff5e21a9b9f68d087715b1a9:
>   Peter Tyser (1):
>         83xx: Remove warmboot parameter from PCI init functions
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-video.git next
> 
> Alexander Stein (1):
>       atmel_lcd: Allow contrast polarity to be either positive or negative
> 
> Anatolij Gustschin (1):
>       fsl_diu_fb: further refactoring of FSL DIU code
> 
> Timur Tabi (2):
>       p1022ds: add video support
>       p1022ds: use weak CFI flash accessors when DIU is enabled
> 
>  arch/powerpc/cpu/mpc512x/diu.c                   |   62 +----
>  board/davedenx/aria/aria.c                       |    5 -
>  board/freescale/common/fsl_diu_fb.c              |   41 +++-
>  board/freescale/mpc8610hpcd/mpc8610hpcd_diu.c    |   74 +-----
>  board/freescale/p1022ds/Makefile                 |    2 +
>  board/freescale/p1022ds/diu.c                    |  304 ++++++++++++++++++++++
>  board/pdm360ng/pdm360ng.c                        |    3 -
>  drivers/video/atmel_lcdfb.c                      |    3 +-
>  include/configs/P1022DS.h                        |   19 +-
>  {board/freescale/common => include}/fsl_diu_fb.h |    1 +
>  include/lcd.h                                    |    1 +
>  11 files changed, 382 insertions(+), 133 deletions(-)
>  create mode 100644 board/freescale/p1022ds/diu.c
>  rename {board/freescale/common => include}/fsl_diu_fb.h (97%)

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
There is an old custom among my people. When a woman  saves  a  man's
life, he is grateful.
	-- Nona, the Kanuto which woman, "A Private Little War",
	   stardate 4211.8.

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

* [U-Boot] Please pull u-boot-video/next
@ 2017-09-15 13:12 Anatolij Gustschin
  2017-09-22 14:18 ` Tom Rini
  0 siblings, 1 reply; 10+ messages in thread
From: Anatolij Gustschin @ 2017-09-15 13:12 UTC (permalink / raw)
  To: u-boot

Hi Tom,

please pull some new video patches. The full build passed:

  https://travis-ci.org/vdsao/u-boot-video/builds/275799369

The following changes since commit c98ac3487e413c71e5d36322ef3324b21c6f60f9:

  Prepare v2017.09 (2017-09-11 14:10:40 -0400)

are available in the git repository at:

  git://git.denx.de/u-boot-video.git next

for you to fetch changes up to 8ef05352508f99b9e69feeca17a49671cc3d0ccf:

  video: add config option to skip framebuffer clear (2017-09-12 13:40:47 +0200)

----------------------------------------------------------------
Patrick Delaunay (2):
      dm: backlight: Add CONFIG_BACKLIGHT_PWM
      dm: backlight: Add a driver for GPIO backlight

Philippe CORNU (1):
      video: add STM32 LTDC display controller

Rob Clark (2):
      video: simplefb
      video: add config option to skip framebuffer clear

 drivers/video/Kconfig            |  41 ++++
 drivers/video/Makefile           |   8 +-
 drivers/video/backlight_gpio.c   |  74 +++++++
 drivers/video/cfb_console.c      |   3 +-
 drivers/video/simplefb.c         |  73 +++++++
 drivers/video/stm32/Kconfig      |  44 +++++
 drivers/video/stm32/Makefile     |  10 +
 drivers/video/stm32/stm32_ltdc.c | 406 +++++++++++++++++++++++++++++++++++++++
 drivers/video/video-uclass.c     |   4 +-
 9 files changed, 657 insertions(+), 6 deletions(-)
 create mode 100644 drivers/video/backlight_gpio.c
 create mode 100644 drivers/video/simplefb.c
 create mode 100644 drivers/video/stm32/Kconfig
 create mode 100644 drivers/video/stm32/Makefile
 create mode 100644 drivers/video/stm32/stm32_ltdc.c

Thanks,
Anatolij

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

* [U-Boot] Please pull u-boot-video/next
  2017-09-15 13:12 Anatolij Gustschin
@ 2017-09-22 14:18 ` Tom Rini
  0 siblings, 0 replies; 10+ messages in thread
From: Tom Rini @ 2017-09-22 14:18 UTC (permalink / raw)
  To: u-boot

On Fri, Sep 15, 2017 at 03:12:28PM +0200, Anatolij Gustschin wrote:

> Hi Tom,
> 
> please pull some new video patches. The full build passed:
> 
>   https://travis-ci.org/vdsao/u-boot-video/builds/275799369
> 
> The following changes since commit c98ac3487e413c71e5d36322ef3324b21c6f60f9:
> 
>   Prepare v2017.09 (2017-09-11 14:10:40 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-video.git next
> 
> for you to fetch changes up to 8ef05352508f99b9e69feeca17a49671cc3d0ccf:
> 
>   video: add config option to skip framebuffer clear (2017-09-12 13:40:47 +0200)
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20170922/608146dd/attachment.sig>

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

* [U-Boot] Please pull u-boot-video/next
@ 2018-03-13 21:31 Anatolij Gustschin
  2018-03-14  1:30 ` Tom Rini
  0 siblings, 1 reply; 10+ messages in thread
From: Anatolij Gustschin @ 2018-03-13 21:31 UTC (permalink / raw)
  To: u-boot

Hi Tom,

The following changes since commit 5e62f828256d66e2b28def4f9ef20a2a05c2d04f:

  Prepare v2018.03-rc4 (2018-03-05 20:27:08 -0500)

are available in the git repository at:

  git://git.denx.de/u-boot-video.git next

for you to fetch changes up to d06717f853cd98a6a4536e5de5248e6c99a2b7bc:

  sunxi: video: mark framebuffer as EFI reserved memory (2018-03-09 18:24:49 +0100)

----------------------------------------------------------------
Heinrich Schuchardt (6):
      dm: video: show correct colors in graphical console
      dm: video: correctly clean background in 16bit mode
      dm: video: use constants to refer to colors
      dm: video: support increased intensity (bold)
      video: indicate code page of bitmap fonts
      sunxi: video: mark framebuffer as EFI reserved memory

Kever Yang (1):
      pwm-backlight: make power-supply as option

 drivers/video/pwm_backlight.c       | 24 +++++-----
 drivers/video/sunxi/sunxi_display.c |  8 ++++
 drivers/video/vidconsole-uclass.c   | 88 ++++++++++++++++++++++++-------------
 drivers/video/video-uclass.c        | 38 ++++++++++++----
 include/video.h                     | 13 +++++-
 include/video_console.h             | 43 ++++++++++++++++++
 include/video_font_4x6.h            |  4 +-
 include/video_font_data.h           |  2 +
 test/dm/video.c                     |  2 +-
 9 files changed, 167 insertions(+), 55 deletions(-)

Please pull. Thanks!

Anatolij

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

* [U-Boot] Please pull u-boot-video/next
  2018-03-13 21:31 Anatolij Gustschin
@ 2018-03-14  1:30 ` Tom Rini
  0 siblings, 0 replies; 10+ messages in thread
From: Tom Rini @ 2018-03-14  1:30 UTC (permalink / raw)
  To: u-boot

On Tue, Mar 13, 2018 at 10:31:58PM +0100, Anatolij Gustschin wrote:

> Hi Tom,
> 
> The following changes since commit 5e62f828256d66e2b28def4f9ef20a2a05c2d04f:
> 
>   Prepare v2018.03-rc4 (2018-03-05 20:27:08 -0500)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-video.git next
> 
> for you to fetch changes up to d06717f853cd98a6a4536e5de5248e6c99a2b7bc:
> 
>   sunxi: video: mark framebuffer as EFI reserved memory (2018-03-09 18:24:49 +0100)
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20180313/cbcb1da8/attachment.sig>

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

end of thread, other threads:[~2018-03-14  1:30 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-09-27 19:24 [U-Boot] Please pull u-boot-video/next Anatolij Gustschin
2010-10-05 12:32 ` Wolfgang Denk
  -- strict thread matches above, loose matches on Subject: below --
2018-03-13 21:31 Anatolij Gustschin
2018-03-14  1:30 ` Tom Rini
2017-09-15 13:12 Anatolij Gustschin
2017-09-22 14:18 ` Tom Rini
2010-09-21 22:47 Anatolij Gustschin
2010-09-22 20:49 ` Wolfgang Denk
2010-06-14 20:29 Anatolij Gustschin
2010-06-17 21:10 ` Wolfgang Denk

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