public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 0/4] Qualcomm SMEM driver
@ 2018-06-09 11:06 Ramon Fried
  2018-06-09 11:06 ` [U-Boot] [PATCH 1/4] dm: SOC (System on chip) uclass Ramon Fried
                   ` (3 more replies)
  0 siblings, 4 replies; 19+ messages in thread
From: Ramon Fried @ 2018-06-09 11:06 UTC (permalink / raw)
  To: u-boot

This patchset introduces Qualcomm's shared memory manager.
In U-boot context, it will allow reading board specific information
(IE. RAM address, RAM size) that was prepopulated by the SBL.

As part of the patchset a new uclass id is introduced, UCLASS_SOC.
The UCLASS_SOC is a class intended for SOC specific drivers that
don't fall into any other uclass catagories.

Tom: Please make sure that this only get merged after:
https://patchwork.ozlabs.org/patch/924769/ as the smem driver needs some
Linux definitions that needs update in U-boot.


Ramon Fried (4):
  dm: SOC (System on chip) uclass
  soc: qualcomm: Add Shared Memory Manager driver
  dts: db410c: added smem nodes
  dts: db820c: added smem nodes

 MAINTAINERS                             |   1 +
 arch/arm/Kconfig                        |   1 +
 arch/arm/dts/dragonboard410c-uboot.dtsi |   4 +
 arch/arm/dts/dragonboard410c.dts        |  16 +
 arch/arm/dts/dragonboard820c-uboot.dtsi |   4 +
 arch/arm/dts/dragonboard820c.dts        |  16 +
 drivers/Kconfig                         |   2 +
 drivers/soc/Kconfig                     |   5 +
 drivers/soc/Makefile                    |   2 +
 drivers/soc/qualcomm/Kconfig            |  11 +
 drivers/soc/qualcomm/Makefile           |   3 +
 drivers/soc/qualcomm/smem.c             | 934 ++++++++++++++++++++++++
 drivers/soc/soc-uclass.c                |   8 +
 include/dm/uclass-id.h                  |   1 +
 14 files changed, 1008 insertions(+)
 create mode 100644 drivers/soc/Kconfig
 create mode 100644 drivers/soc/qualcomm/Kconfig
 create mode 100644 drivers/soc/qualcomm/Makefile
 create mode 100644 drivers/soc/qualcomm/smem.c
 create mode 100644 drivers/soc/soc-uclass.c

-- 
2.17.1

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

end of thread, other threads:[~2018-06-13 17:37 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-06-09 11:06 [U-Boot] [PATCH 0/4] Qualcomm SMEM driver Ramon Fried
2018-06-09 11:06 ` [U-Boot] [PATCH 1/4] dm: SOC (System on chip) uclass Ramon Fried
2018-06-09 10:31   ` Heinrich Schuchardt
2018-06-11 14:54   ` Simon Glass
2018-06-09 11:06 ` [U-Boot] [PATCH 2/4] soc: qualcomm: Add Shared Memory Manager driver Ramon Fried
2018-06-09 10:12   ` Heinrich Schuchardt
2018-06-09 10:29     ` Ramon Fried
2018-06-09 11:17       ` Heinrich Schuchardt
2018-06-13 17:37         ` Ramon Fried
2018-06-09 10:24   ` Heinrich Schuchardt
2018-06-09 10:31     ` Ramon Fried
2018-06-11 14:53   ` Simon Glass
2018-06-11 19:14     ` Ramon Fried
2018-06-11 19:38       ` Simon Glass
2018-06-12  8:50         ` Ramon Fried
2018-06-13  1:29           ` Simon Glass
2018-06-13 17:35             ` Ramon Fried
2018-06-09 11:06 ` [U-Boot] [PATCH 3/4] dts: db410c: added smem nodes Ramon Fried
2018-06-09 11:06 ` [U-Boot] [PATCH 4/4] dts: db820c: " Ramon Fried

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