All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v3 0/2] x86: SCU and PMU drivers for Intel MID
@ 2017-04-01 13:21 Andy Shevchenko
  2017-04-01 13:21 ` [U-Boot] [PATCH v3 1/2] x86: Add SCU IPC driver for Intel MID platforms Andy Shevchenko
  2017-04-01 13:21 ` [U-Boot] [PATCH v3 2/2] x86: Introduce minimal PMU " Andy Shevchenko
  0 siblings, 2 replies; 7+ messages in thread
From: Andy Shevchenko @ 2017-04-01 13:21 UTC (permalink / raw)
  To: u-boot

There are two crucial drivers to make Intel MID platforms functional in
U-Boot:
	SCU which stands for System Controller Unit
	PMU which stands for Power Management Unit

Since v2:
- resend with cover letter including changes from previous versions

Since v1:

Common:
- convert to use REGMAP instead of constant addressed IO
- rewrite as UCLASS_SYSCON modules
- move to arch/x86/lib since it's related to x86 only and there are
  already another UCLASS_SYSCON modules there

SCU:
- convert function documentation to have header and body and be
  consistent
- shrink header and remove unneeded attributes
- drop busy loop counter from 3m to 100k as per driver in Linux kernel

PMU:
- convert to be more generic and move Tangier related part to its own
  folder (the latter out of scope of this series)

Andy Shevchenko (1):
  x86: Introduce minimal PMU driver for Intel MID platforms

Felipe Balbi (1):
  x86: Add SCU IPC driver for Intel MID platforms

 arch/x86/Kconfig           |   2 +
 arch/x86/include/asm/cpu.h |   2 +
 arch/x86/include/asm/pmu.h |  11 +++
 arch/x86/include/asm/scu.h |  28 ++++++++
 arch/x86/lib/Makefile      |   2 +
 arch/x86/lib/pmu.c         | 117 +++++++++++++++++++++++++++++++
 arch/x86/lib/scu.c         | 168 +++++++++++++++++++++++++++++++++++++++++++++
 7 files changed, 330 insertions(+)
 create mode 100644 arch/x86/include/asm/pmu.h
 create mode 100644 arch/x86/include/asm/scu.h
 create mode 100644 arch/x86/lib/pmu.c
 create mode 100644 arch/x86/lib/scu.c

-- 
2.11.0

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

end of thread, other threads:[~2017-04-10  2:01 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-04-01 13:21 [U-Boot] [PATCH v3 0/2] x86: SCU and PMU drivers for Intel MID Andy Shevchenko
2017-04-01 13:21 ` [U-Boot] [PATCH v3 1/2] x86: Add SCU IPC driver for Intel MID platforms Andy Shevchenko
2017-04-06  3:44   ` Simon Glass
2017-04-10  2:01     ` Bin Meng
2017-04-01 13:21 ` [U-Boot] [PATCH v3 2/2] x86: Introduce minimal PMU " Andy Shevchenko
2017-04-06  3:44   ` Simon Glass
2017-04-10  2:01     ` Bin Meng

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.