All of lore.kernel.org
 help / color / mirror / Atom feed
From: Bin Meng <bmeng.cn@gmail.com>
To: u-boot@lists.denx.de
Subject: Please pull u-boot-x86
Date: Thu, 9 Jul 2020 17:50:03 +0800	[thread overview]
Message-ID: <CAEUhbmVAeMd=NgAHUonYQNqDL1TEnrwiJAXZ6bXnZSFsgUMwpA@mail.gmail.com> (raw)

Hi Tom,

This PR includes the following changes for U-Boot v2020.10:

- Add two- and three-argument versions of CONFIG_IS_ENABLED in linux/kconfig.h
- Adds a new feature which supports copying modified parts of
the frame buffer to the uncached hardware buffer
- Enable the copy framebuffer on various x86 targets

Azure pipeline results: PASS
https://dev.azure.com/bmeng/GitHub/_build/results?buildId=253&view=results

The following changes since commit 61608f395e7dcb2be6060407a72a1149b046430a:

  Merge branch '2020-07-08-misc-features-and-fixes' (2020-07-08 20:20:24 -0400)

are available in the git repository at:

  https://gitlab.denx.de/u-boot/custodians/u-boot-x86

for you to fetch changes up to db17e40ccab6526a9db6ffdd071182a37dd888eb:

  x86: apl: Re-enable loading of SPL (2020-07-09 12:33:24 +0800)

----------------------------------------------------------------
Bin Meng (1):
      arm: cmd_stm32prog: Fix the CONFIG_IS_ENABLED() usage

Rasmus Villemoes (3):
      linux/kconfig.h: simplify logic for choosing CONFIG_{SPL_, TPL_, }*
      linux/kconfig.h: remove unused helper macros
      linux/kconfig.h: create two- and three-argument versions of
CONFIG_IS_ENABLED

Simon Glass (29):
      x86: fsp: Reinit the FPU after FSP meminit
      console: Add a way to output to serial only
      video: Show an error when a vidconsole function fails
      sandbox: video: Allow selection of rotated console
      video: Split out expression parts into variables
      video: Adjust rotated console to start at right edge
      video: Drop unnecessary #ifdef around vid_console_color()
      video: Add a comment for struct video_uc_platdata
      video: Add support for copying to a hardware framebuffer
      video: Set up the copy framebuffer when enabled
      video: Clear the copy framebuffer when clearing the screen
      video: Add helpers for vidconsole for the copy framebuffer
      video: Update normal console to support copy buffer
      video: Update truetype console to support copy buffer
      video: Update rotated console to support copy buffer
      video: Update the copy framebuffer when writing bitmaps
      video: Add comments to struct sandbox_sdl_plat
      video: sandbox: Add support for the copy framebuffer
      video: pci: Set up the copy framebuffer
      x86: fsp: video: Allocate a frame buffer when needed
      video: Correctly handle multiple framebuffers
      x86: video: Support copy framebuffer with probed devices
      chromebook_samus: Enable the copy framebuffer
      chromebook_link: Enable the copy framebuffer
      minnowmax: Enable the copy framebuffer
      x86: minnowmax: Drop screen resolution to 1024x768
      bootstage: Fix 'stacked' typo
      spi: Remove unnecessary #ifdefs in header file
      x86: apl: Re-enable loading of SPL

 arch/arm/mach-stm32mp/cmd_stm32prog/cmd_stm32prog.c |   2 +-
 arch/x86/cpu/apollolake/Makefile                    |   2 +-
 arch/x86/cpu/i386/cpu.c                             |   5 +++++
 arch/x86/include/asm/u-boot-x86.h                   |   8 ++++++++
 arch/x86/lib/fsp/fsp_graphics.c                     |  12 ++++++++++++
 arch/x86/lib/fsp2/fsp_meminit.c                     |   1 +
 common/console.c                                    |  28
++++++++++++++++++++++------
 configs/chromebook_link_defconfig                   |   2 +-
 configs/chromebook_samus_defconfig                  |   2 +-
 configs/minnowmax_defconfig                         |   4 ++--
 configs/sandbox_defconfig                           |   1 +
 drivers/pci/pci_rom.c                               |  22
+++++++++++++++++++++-
 drivers/video/Kconfig                               |  31
+++++++++++++++++++++++++++++++
 drivers/video/broadwell_igd.c                       |  16 +++++++++++++++-
 drivers/video/console_normal.c                      |  26
+++++++++++++++++++++++---
 drivers/video/console_rotate.c                      | 103
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---------------------------------
 drivers/video/console_truetype.c                    |  43
+++++++++++++++++++++++++++++++------------
 drivers/video/ivybridge_igd.c                       |  26
++++++++++++++++++++------
 drivers/video/sandbox_sdl.c                         |  10 +++++++++-
 drivers/video/vesa.c                                |  30
+++++++++++++++++++++++++++++-
 drivers/video/vidconsole-uclass.c                   |  38
+++++++++++++++++++++++++++++++++++---
 drivers/video/video-uclass.c                        |  93
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--
 drivers/video/video_bmp.c                           |  16 +++++++++++++---
 include/bootstage.h                                 |   2 +-
 include/console.h                                   |  13 +++++++++++++
 include/dm/test.h                                   |  14 +++++++++++++-
 include/linux/kconfig.h                             | 103
++++++++++++++++++++++++++++++++++++++++++++++++++++---------------------------------------------------
 include/spi.h                                       |  13 ++++++-------
 include/video.h                                     |  41
+++++++++++++++++++++++++++++++++++++++++
 include/video_console.h                             |  51
+++++++++++++++++++++++++++++++++++++++++++++++++--
 scripts/config_whitelist.txt                        |   2 --
 test/dm/video.c                                     |  60
+++++++++++++++++++++++++++++++++++++-----------------------
 32 files changed, 655 insertions(+), 165 deletions(-)

Regards,
Bin

             reply	other threads:[~2020-07-09  9:50 UTC|newest]

Thread overview: 80+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-07-09  9:50 Bin Meng [this message]
2020-07-09 23:59 ` Please pull u-boot-x86 Tom Rini
  -- strict thread matches above, loose matches on Subject: below --
2023-08-09 16:38 Bin Meng
2023-08-09 19:09 ` Tom Rini
2023-08-01 15:34 Bin Meng
2023-08-01 16:03 ` Tom Rini
2023-07-17 12:44 Bin Meng
2023-07-17 18:53 ` Tom Rini
2023-05-11  8:16 Bin Meng
2023-05-11 16:33 ` Tom Rini
2023-03-27  1:42 Bin Meng
2023-03-27 17:34 ` Tom Rini
2022-12-14  6:27 Bin Meng
2022-12-16 13:24 ` Tom Rini
2022-03-14 14:40 Bin Meng
2022-03-14 16:19 ` Tom Rini
2021-11-01  4:38 Bin Meng
2021-11-01 17:43 ` Tom Rini
2021-09-22 15:42 Bin Meng
2021-09-22 15:51 ` Tom Rini
2021-08-13  5:11 Bin Meng
2021-08-13 12:39 ` Tom Rini
2021-08-02 23:35 Bin Meng
2021-08-03 13:06 ` Tom Rini
2021-07-15 13:54 Bin Meng
2021-07-15 18:48 ` Tom Rini
2021-06-23 11:01 Bin Meng
2021-06-24 13:15 ` Tom Rini
2021-05-10 12:00 Bin Meng
2021-05-10 21:06 ` Tom Rini
2021-04-15  4:20 Bin Meng
2021-04-15 19:42 ` Tom Rini
2021-03-09  5:15 Bin Meng
2021-03-10  4:00 ` Tom Rini
2021-02-06 13:08 Bin Meng
2021-02-07 19:15 ` Tom Rini
2021-02-04  0:08 Bin Meng
2021-02-04 21:58 ` Tom Rini
2021-02-01  9:37 Bin Meng
2021-02-01 16:05 ` Tom Rini
2020-12-22  7:27 Bin Meng
2020-12-23 21:55 ` Tom Rini
2020-12-16  9:34 Bin Meng
2020-12-16 16:01 ` Tom Rini
2020-11-10  3:38 Bin Meng
2020-11-10 12:39 ` Tom Rini
2020-11-06  4:55 Bin Meng
2020-11-06 16:26 ` Tom Rini
2020-09-21 14:14 Bin Meng
2020-09-21 17:39 ` Tom Rini
2020-09-01 14:36 Bin Meng
2020-09-01 17:25 ` Tom Rini
2020-08-03  4:27 Bin Meng
2020-08-03 16:00 ` Tom Rini
2020-07-20  3:24 Bin Meng
2020-07-20 16:14 ` Tom Rini
2020-07-17 10:15 Bin Meng
2020-07-17 14:49 ` Tom Rini
2020-06-02  1:23 Bin Meng
2020-06-02 13:29 ` Tom Rini
2020-05-27  6:45 Bin Meng
2020-05-27 15:59 ` Tom Rini
2020-05-04  9:31 Bin Meng
2020-05-04 17:54 ` Tom Rini
2020-04-30 13:53 Bin Meng
2020-04-30 19:10 ` Tom Rini
2020-04-16 11:11 Bin Meng
2020-04-16 17:38 ` Tom Rini
2020-04-04 23:12 Bin Meng
2020-04-05 23:05 ` Tom Rini
2020-03-05 12:49 Bin Meng
2020-03-09 12:24 ` Tom Rini
2020-02-08  1:54 Bin Meng
2020-02-10 13:39 ` Tom Rini
2020-02-10 17:20   ` Anatolij Gustschin
2020-02-10 17:28     ` Tom Rini
2020-02-04  6:58 Bin Meng
2020-02-05  1:03 ` Tom Rini
2019-12-08 15:49 Bin Meng
2019-12-08 16:36 ` Tom Rini

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CAEUhbmVAeMd=NgAHUonYQNqDL1TEnrwiJAXZ6bXnZSFsgUMwpA@mail.gmail.com' \
    --to=bmeng.cn@gmail.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.