All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 00/13] x86: ivybridge: cougarcanyon2: Various enhancements
@ 2018-06-04  2:04 Bin Meng
  2018-06-04  2:04 ` [U-Boot] [PATCH 01/13] usb: xhci-pci: Fix compiler warning Bin Meng
                   ` (12 more replies)
  0 siblings, 13 replies; 36+ messages in thread
From: Bin Meng @ 2018-06-04  2:04 UTC (permalink / raw)
  To: u-boot

This adds some enhancements to the Intel Cougar Canyon 2 board.

This series is available at u-boot-x86/cc2-working for testing.


Bin Meng (13):
  usb: xhci-pci: Fix compiler warning
  x86: ivybridge: Imply USB_XHCI_HCD
  x86: cougarcanyon2: Update dts for SPI lock down
  x86: cougarcanyon2: Remove CONFIG_HAVE_INTEL_ME
  x86: ivybridge: Enable 206ax cpu driver for FSP build
  x86: ivybridge: Drop CONFIG_USBDEBUG
  x86: chromebook_link: Remove dm-pre-reloc property in the cpu nodes
  x86: cougarcanyon2: Enable CPU driver and SMP support
  x86: irq: Remove chipset specific irq router drivers
  x86: irq: Change LINK_V2N and LINK_N2V to inline functions
  x86: irq: Introduce CONFIG_DISCRETE_PIRQ_ROUT
  x86: ivybridge: Implement IvyBridge-specific IRQ converting logic
  x86: cougarcanyon2: Add missing chipset interrupt information

 arch/x86/Kconfig                          |  9 ++++
 arch/x86/cpu/intel_common/mrc.c           |  5 ---
 arch/x86/cpu/irq.c                        | 28 ++++++------
 arch/x86/cpu/ivybridge/Kconfig            |  5 +++
 arch/x86/cpu/ivybridge/Makefile           |  2 +-
 arch/x86/cpu/ivybridge/model_206ax.c      | 15 -------
 arch/x86/cpu/quark/Makefile               |  2 +-
 arch/x86/cpu/quark/irq.c                  | 48 ---------------------
 arch/x86/cpu/quark/quark.c                | 26 +++++++++++
 arch/x86/cpu/queensbay/Makefile           |  2 +-
 arch/x86/cpu/queensbay/irq.c              | 64 ----------------------------
 arch/x86/cpu/queensbay/tnc.c              | 39 +++++++++++++++++
 arch/x86/dts/chromebook_link.dts          |  5 ---
 arch/x86/dts/cougarcanyon2.dts            | 71 +++++++++++++++++++++++++++++++
 arch/x86/dts/crownbay.dts                 |  2 +-
 arch/x86/dts/galileo.dts                  |  2 +-
 arch/x86/include/asm/arch-ivybridge/irq.h | 45 ++++++++++++++++++++
 arch/x86/include/asm/irq.h                | 31 ++++++++++----
 configs/cougarcanyon2_defconfig           |  6 +++
 doc/README.x86                            |  4 +-
 drivers/usb/host/xhci-pci.c               |  5 +--
 scripts/config_whitelist.txt              |  1 -
 22 files changed, 249 insertions(+), 168 deletions(-)
 delete mode 100644 arch/x86/cpu/quark/irq.c
 delete mode 100644 arch/x86/cpu/queensbay/irq.c
 create mode 100644 arch/x86/include/asm/arch-ivybridge/irq.h

-- 
2.7.4

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

end of thread, other threads:[~2018-06-12  1:54 UTC | newest]

Thread overview: 36+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-06-04  2:04 [U-Boot] [PATCH 00/13] x86: ivybridge: cougarcanyon2: Various enhancements Bin Meng
2018-06-04  2:04 ` [U-Boot] [PATCH 01/13] usb: xhci-pci: Fix compiler warning Bin Meng
2018-06-07 20:29   ` Simon Glass
2018-06-12  1:53     ` Bin Meng
2018-06-04  2:04 ` [U-Boot] [PATCH 02/13] x86: ivybridge: Imply USB_XHCI_HCD Bin Meng
2018-06-07 20:30   ` Simon Glass
2018-06-12  1:53     ` Bin Meng
2018-06-04  2:04 ` [U-Boot] [PATCH 03/13] x86: cougarcanyon2: Update dts for SPI lock down Bin Meng
2018-06-07 20:31   ` Simon Glass
2018-06-12  1:53     ` Bin Meng
2018-06-04  2:04 ` [U-Boot] [PATCH 04/13] x86: cougarcanyon2: Remove CONFIG_HAVE_INTEL_ME Bin Meng
2018-06-07 20:31   ` Simon Glass
2018-06-12  1:53     ` Bin Meng
2018-06-04  2:04 ` [U-Boot] [PATCH 05/13] x86: ivybridge: Enable 206ax cpu driver for FSP build Bin Meng
2018-06-07 20:31   ` Simon Glass
2018-06-12  1:53     ` Bin Meng
2018-06-04  2:04 ` [U-Boot] [PATCH 06/13] x86: ivybridge: Drop CONFIG_USBDEBUG Bin Meng
2018-06-07 20:32   ` Simon Glass
2018-06-12  1:53     ` Bin Meng
2018-06-04  2:04 ` [U-Boot] [PATCH 07/13] x86: chromebook_link: Remove dm-pre-reloc property in the cpu nodes Bin Meng
2018-06-07 20:33   ` Simon Glass
2018-06-12  1:54     ` Bin Meng
2018-06-04  2:04 ` [U-Boot] [PATCH 08/13] x86: cougarcanyon2: Enable CPU driver and SMP support Bin Meng
2018-06-07 20:32   ` Simon Glass
2018-06-12  1:54     ` Bin Meng
2018-06-04  2:04 ` [U-Boot] [PATCH 09/13] x86: irq: Remove chipset specific irq router drivers Bin Meng
2018-06-07 20:33   ` Simon Glass
2018-06-12  1:54     ` Bin Meng
2018-06-04  2:04 ` [U-Boot] [PATCH 10/13] x86: irq: Change LINK_V2N and LINK_N2V to inline functions Bin Meng
2018-06-07 20:33   ` Simon Glass
2018-06-12  1:54     ` Bin Meng
2018-06-04  2:04 ` [U-Boot] [PATCH 11/13] x86: irq: Introduce CONFIG_DISCRETE_PIRQ_ROUT Bin Meng
2018-06-07 20:34   ` Simon Glass
2018-06-04  2:04 ` [U-Boot] [PATCH 12/13] x86: ivybridge: Implement IvyBridge-specific IRQ converting logic Bin Meng
2018-06-04  2:04 ` [U-Boot] [PATCH 13/13] x86: cougarcanyon2: Add missing chipset interrupt information Bin Meng
2018-06-07 20:34   ` Simon Glass

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.