All of lore.kernel.org
 help / color / mirror / Atom feed
From: Bin Meng <bmeng.cn@gmail.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] Please pull u-boot-x86
Date: Tue, 16 Aug 2016 12:41:22 +0800	[thread overview]
Message-ID: <CAEUhbmVP7A8OXWEwYK4RS-RYSaE6E5w86zKW8UYLFFu_PRXc-Q@mail.gmail.com> (raw)

Hi Tom,

The following changes since commit 4cc9699be7ffc6072482240f5ba208488abe1090:

  common: env_nand: Ensure that we have nand_info[0] prior to use
(2016-08-15 18:46:41 -0400)

are available in the git repository at:

  git://git.denx.de/u-boot-x86.git master

for you to fetch changes up to 27daffe7cec26ec1462245e4e15c36d19d886221:

  x86: Add theadorable-x86-dfi-bt700 board support (2016-08-16 11:44:09 +0800)

----------------------------------------------------------------
Bin Meng (1):
      x86: bayleybay: Add PS/2 keyboard and mouse to ASL file

George McCollister (1):
      x86: som-db5800-som-6867: fix SERIRQ on reset

Simon Glass (5):
      x86: Mention how to boot a 64-bit kernel from U-Boot
      x86: Add a reference to README.efi
      x86: Mention running U-Boot in 64-bit mode in the README
      bdinfo: Don't print out empty DRAM banks
      x86: bdinfo: Drop meaningless values

Stefan Roese (9):
      x86: conga-qeval20-qa3: Add missing MAINTERNERS entry
      x86: doc: Add note about the debug FSP usage on BayTrail
      x86: cache.h: Add default for CONFIG_SYS_CACHELINE_SIZE
      x86: baytrail: Add SIO HS-UART clock setup
      misc: Add simple driver for some Nuvoton NCT6102D devices
      i2c: intel_i2c: SMBus driver PCI addition (e.g. BayTrail)
      x86: conga-qeval20-qa3: Add SMBus support and SMSC2513 config code
      x86: Add DFI BT700 BayTrail board support
      x86: Add theadorable-x86-dfi-bt700 board support

Yaroslav K (1):
      cbfs: Fix incorrect CBFS file header size being used

 arch/x86/Kconfig                                           |   4 ++
 arch/x86/cpu/baytrail/cpu.c                                |  48 +++++++++++++
 arch/x86/dts/Makefile                                      |   2 +
 arch/x86/dts/baytrail_som-db5800-som-6867.dts              |   6 ++
 arch/x86/dts/conga-qeval20-qa3-e3845.dts                   |  18 +++--
 arch/x86/dts/dfi-bt700-q7x-151.dts                         |  22 ++++++
 arch/x86/dts/dfi-bt700.dtsi                                | 308
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 arch/x86/dts/theadorable-x86-dfi-bt700.dts                 |  21 ++++++
 arch/x86/include/asm/arch-ivybridge/pch.h                  |  26 -------
 arch/x86/include/asm/cache.h                               |   8 +--
 board/congatec/conga-qeval20-qa3-e3845/MAINTAINERS         |   1 +
 board/congatec/conga-qeval20-qa3-e3845/conga-qeval20-qa3.c |  40 +++++++++++
 board/dfi/Kconfig                                          |  29 ++++++++
 board/dfi/dfi-bt700/Kconfig                                |  28 ++++++++
 board/dfi/dfi-bt700/MAINTAINERS                            |  10 +++
 board/dfi/dfi-bt700/Makefile                               |   8 +++
 board/dfi/dfi-bt700/acpi/mainboard.asl                     |  13 ++++
 board/dfi/dfi-bt700/dfi-bt700.c                            |  30 ++++++++
 board/dfi/dfi-bt700/dsdt.asl                               |  14 ++++
 board/dfi/dfi-bt700/start.S                                |   9 +++
 board/intel/bayleybay/acpi/mainboard.asl                   |  38 +++++++++++
 cmd/bdinfo.c                                               |  18 ++---
 configs/conga-qeval20-qa3-e3845-internal-uart_defconfig    |   3 +
 configs/conga-qeval20-qa3-e3845_defconfig                  |   3 +
 configs/dfi-bt700-q7x-151_defconfig                        |  63
+++++++++++++++++
 configs/theadorable-x86-dfi-bt700_defconfig                |  60
++++++++++++++++
 doc/README.x86                                             |  33 +++++++++
 doc/uImage.FIT/kernel.its                                  |   4 ++
 doc/uImage.FIT/x86-fit-boot.txt                            |  14 ++--
 drivers/i2c/intel_i2c.c                                    | 290
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------
 drivers/misc/Kconfig                                       |   8 +++
 drivers/misc/Makefile                                      |   1 +
 drivers/misc/nuvoton_nct6102d.c                            |  56
+++++++++++++++
 fs/cbfs/cbfs.c                                             |   8 +--
 include/configs/conga-qeval20-qa3-e3845.h                  |  12 ++--
 include/configs/dfi-bt700.h                                |  74
++++++++++++++++++++
 include/nuvoton_nct6102d.h                                 |  34 ++++++++++
 37 files changed, 1275 insertions(+), 89 deletions(-)
 create mode 100644 arch/x86/dts/dfi-bt700-q7x-151.dts
 create mode 100644 arch/x86/dts/dfi-bt700.dtsi
 create mode 100644 arch/x86/dts/theadorable-x86-dfi-bt700.dts
 create mode 100644 board/dfi/Kconfig
 create mode 100644 board/dfi/dfi-bt700/Kconfig
 create mode 100644 board/dfi/dfi-bt700/MAINTAINERS
 create mode 100644 board/dfi/dfi-bt700/Makefile
 create mode 100644 board/dfi/dfi-bt700/acpi/mainboard.asl
 create mode 100644 board/dfi/dfi-bt700/dfi-bt700.c
 create mode 100644 board/dfi/dfi-bt700/dsdt.asl
 create mode 100644 board/dfi/dfi-bt700/start.S
 create mode 100644 configs/dfi-bt700-q7x-151_defconfig
 create mode 100644 configs/theadorable-x86-dfi-bt700_defconfig
 create mode 100644 drivers/misc/nuvoton_nct6102d.c
 create mode 100644 include/configs/dfi-bt700.h
 create mode 100644 include/nuvoton_nct6102d.h

Regards,
Bin

             reply	other threads:[~2016-08-16  4:41 UTC|newest]

Thread overview: 181+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-08-16  4:41 Bin Meng [this message]
2016-08-16 17:56 ` [U-Boot] Please pull u-boot-x86 Tom Rini
  -- strict thread matches above, loose matches on Subject: below --
2019-11-02 23:23 Bin Meng
2019-11-04  0:29 ` Tom Rini
2019-10-11 14:49 Bin Meng
2019-10-12 20:21 ` Tom Rini
2019-10-08  8:28 Bin Meng
2019-10-09 13:21 ` Tom Rini
2019-10-04  0:36 Bin Meng
2019-10-06  0:08 ` Tom Rini
2019-10-01 14:05 Bin Meng
2019-10-02  2:50 ` Tom Rini
2019-09-10 12:35 Bin Meng
2019-09-10 20:28 ` Tom Rini
2019-08-19  1:07 Bin Meng
2019-08-19 19:05 ` Tom Rini
2019-08-09 23:35 Bin Meng
2019-08-11  1:13 ` Tom Rini
2019-06-22 15:00 Bin Meng
2019-06-24 12:19 ` Tom Rini
2019-05-19  8:19 Bin Meng
2019-05-19 20:46 ` Tom Rini
2019-05-08 11:21 Bin Meng
2019-05-08 17:50 ` Tom Rini
2019-03-11 15:05 Bin Meng
2019-03-11 19:48 ` Tom Rini
2019-02-20  8:52 Bin Meng
2019-02-21 23:10 ` Tom Rini
2019-02-12  6:56 Bin Meng
2019-02-13  0:56 ` Tom Rini
2018-12-31  4:53 Bin Meng
2019-01-01 13:32 ` Tom Rini
2018-12-10  2:22 Bin Meng
2018-12-10 15:17 ` Tom Rini
2018-11-06  5:38 Bin Meng
2018-11-06 22:48 ` Tom Rini
2018-10-28 13:07 Bin Meng
2018-10-29  3:08 ` Tom Rini
2018-10-22 14:17 Bin Meng
2018-10-22 17:47 ` Tom Rini
2018-10-22 17:49   ` Simon Glass
2018-10-22 18:00     ` Tom Rini
2018-10-23  1:26   ` Bin Meng
2018-10-23  1:52     ` Tom Rini
2018-10-22 20:54 ` Tom Rini
2018-09-17  8:54 Bin Meng
2018-09-17  9:21 ` Bin Meng
2018-08-30  3:33 Bin Meng
2018-08-30 21:33 ` Tom Rini
2018-08-20  5:59 Bin Meng
2018-08-20 22:11 ` Tom Rini
2018-07-20  6:01 Bin Meng
2018-07-21  2:35 ` Tom Rini
2018-07-02  2:00 Bin Meng
2018-07-02 15:16 ` Tom Rini
2018-06-24  1:15 Bin Meng
2018-06-25 12:08 ` Tom Rini
2018-06-17 13:21 Bin Meng
2018-06-18 19:37 ` Tom Rini
2018-06-18 22:05   ` Tom Rini
2018-06-13  2:17 Bin Meng
2018-06-14 15:36 ` Tom Rini
2018-04-16  9:17 Bin Meng
2018-04-16 12:31 ` Tom Rini
2018-04-16 14:42   ` Bin Meng
2018-03-30  8:12 Bin Meng
2018-04-01 13:19 ` Tom Rini
2018-01-30 14:42 Bin Meng
2018-01-30 17:50 ` Tom Rini
2018-01-08  9:01 Bin Meng
2018-01-08 16:19 ` Tom Rini
2017-12-21  1:24 Bin Meng
2017-12-21 14:54 ` Tom Rini
2017-11-30  6:03 Bin Meng
2017-11-30 18:45 ` Tom Rini
2017-10-27  7:18 Bin Meng
2017-10-28  1:57 ` Tom Rini
2017-10-19  3:55 Bin Meng
2017-10-19 20:56 ` Tom Rini
2017-10-07  7:16 Bin Meng
2017-10-07  7:31 ` Zoran Stojsavljevic
2017-10-07  8:32   ` Bin Meng
2017-10-08 13:45     ` Andy Shevchenko
2017-10-08 15:11 ` Tom Rini
2017-09-16  9:54 Bin Meng
2017-09-18 14:57 ` Tom Rini
2017-09-02 15:56 Bin Meng
2017-09-03 11:31 ` Tom Rini
2017-08-24  3:18 Bin Meng
2017-08-26 20:45 ` Tom Rini
2017-08-08 13:29 Bin Meng
2017-08-09 15:26 ` Tom Rini
2017-08-01 12:24 Bin Meng
2017-08-02 13:55 ` Tom Rini
2017-07-30  2:45 Bin Meng
2017-07-30 17:58 ` Tom Rini
2017-06-27  8:34 Bin Meng
2017-06-27 17:33 ` Tom Rini
2017-06-22  7:41 Bin Meng
2017-06-23 12:22 ` Tom Rini
2017-06-05  0:56 Bin Meng
2017-06-05 12:10 ` Tom Rini
2017-05-17  9:18 Bin Meng
2017-05-17 21:13 ` Tom Rini
2017-04-18  8:12 Bin Meng
2017-04-19 13:02 ` Tom Rini
2017-04-10  2:17 Bin Meng
2017-04-10 18:27 ` Tom Rini
2017-02-21  7:21 Bin Meng
2017-02-22 19:50 ` Tom Rini
2017-02-07  5:51 Bin Meng
2017-02-08  1:27 ` Tom Rini
2016-12-26  5:42 Bin Meng
2016-12-26 13:23 ` Tom Rini
2016-10-18  8:03 Bin Meng
2016-10-18 14:06 ` Tom Rini
2016-10-18 14:19   ` Tom Rini
2016-10-18 22:47 ` Tom Rini
2016-10-12  3:04 Bin Meng
2016-10-13  0:48 ` Tom Rini
2016-08-30  1:33 Bin Meng
2016-08-30  2:06 ` Tom Rini
2016-07-12  6:09 Bin Meng
2016-07-12 17:59 ` Tom Rini
2016-06-29  2:11 Bin Meng
2016-06-29  2:19 ` Tom Rini
2016-06-12  4:38 Bin Meng
2016-06-19 14:03 ` Tom Rini
2016-05-30  2:45 Bin Meng
2016-05-31 14:49 ` Tom Rini
2016-05-23  8:17 Bin Meng
2016-05-24 15:55 ` Tom Rini
2016-04-22  4:08 Bin Meng
2016-04-22  4:09 ` Bin Meng
2016-04-22 14:27 ` Tom Rini
2016-03-17  2:31 Bin Meng
2016-03-17 14:14 ` Tom Rini
2016-02-21  6:14 Bin Meng
2016-02-21 21:41 ` Tom Rini
2016-02-05  4:52 Bin Meng
2016-02-08 20:45 ` Tom Rini
2016-01-28  7:13 Bin Meng
2016-01-28 23:18 ` Tom Rini
2016-01-24  6:05 Bin Meng
2016-01-24 19:43 ` Tom Rini
2016-01-13  8:03 Bin Meng
2016-01-13 21:55 ` Tom Rini
2016-01-15  1:39   ` Bin Meng
2016-01-15  2:52     ` Tom Rini
2015-12-09  2:02 Bin Meng
2015-12-09  9:40 ` Bin Meng
2015-11-13 14:58 Bin Meng
2015-11-16 17:59 ` Tom Rini
2015-10-08 21:46 Simon Glass
2015-10-09 13:56 ` Tom Rini
2015-09-29  4:46 Simon Glass
2015-09-29  4:48 ` Bin Meng
2015-09-29  4:51   ` Simon Glass
2015-09-17 18:56 Simon Glass
2015-09-17 21:03 ` Tom Rini
2015-08-05 18:06 Simon Glass
2015-08-05 21:10 ` Tom Rini
2015-07-31 13:35 Simon Glass
2015-08-01 14:47 ` Tom Rini
2015-07-28 17:42 Simon Glass
2015-07-29 15:16 ` Tom Rini
     [not found] <CAPnjgZ2twBnMUSYHHn=M_WO1VCwQ2DXht2NG9djekW=j+WsXMQ@mail.gmail.com>
2015-07-15 14:29 ` Simon Glass
2015-07-16 13:21   ` Tom Rini
2015-06-05 14:18 Simon Glass
2015-06-05 14:20 ` Simon Glass
2015-06-06 13:27 ` Tom Rini
2015-05-01 20:39 Simon Glass
2015-05-05 23:58 ` Tom Rini
     [not found] <CAPnjgZ02mWGCD7xqRD1tPhs-f7O6Fh0kGFMcjt9khvcn0Z5akA@mail.gmail.com>
2015-02-09  4:29 ` Simon Glass
2015-02-10 20:09   ` Tom Rini
2015-01-26 19:51 Simon Glass
2015-01-27 11:51 ` Tom Rini
2014-12-15 21:13 Simon Glass
2014-12-16  1:15 ` Tom Rini
2014-10-29 19:13 Simon Glass
2014-11-03 17:45 ` 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=CAEUhbmVP7A8OXWEwYK4RS-RYSaE6E5w86zKW8UYLFFu_PRXc-Q@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.