All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v5 0/2] Add arm pl353 smc driver for xilinx zynq soc
@ 2015-01-06 17:49 ` Punnaiah Choudary Kalluri
  0 siblings, 0 replies; 3+ messages in thread
From: Punnaiah Choudary Kalluri @ 2015-01-06 17:49 UTC (permalink / raw)
  To: robh+dt, pawel.moll, mark.rutland, ijc+devicetree, galak, rob,
	michal.simek, grant.likely, gregkh, jason, ezequiel.garcia, arnd,
	dwmw2, computersforpeace, artem.bityutskiy, pekon,
	jussi.kivilinna, acourbot, ivan.khoronzhuk, joern
  Cc: devicetree, linux-doc, linux-kernel, linux-mtd, kpc528,
	kalluripunnaiahchoudary, Punnaiah Choudary Kalluri

The following patches add arm pl353 static memory controller driver for
xilinx zynq soc. The arm pl353 smc supports two interfaces i.e nand and
nor/sram memory interfaces. The current implementation supports only a
single SMC instance and nand specific configuration.

xilinx zynq TRM link:
http://www.xilinx.com/support/documentation/user_guides/ug585-Zynq-7000-TRM.pdf

ARM pl353 smc TRM link:
http://infocenter.arm.com/help/topic/com.arm.doc.ddi0380g/
DDI0380G_smc_pl350_series_r2p1_trm.pdf

Punnaiah Choudary Kalluri (2):
  Devicetree: Add pl353 smc controller devicetree binding information
  memory: pl353: Add driver for arm pl353 static memory controller

 .../bindings/memory-controllers/pl353-smc.txt      |   37 ++
 drivers/memory/Kconfig                             |    6 +
 drivers/memory/Makefile                            |    1 +
 drivers/memory/pl353-smc.c                         |  525 ++++++++++++++++++++
 include/linux/memory/pl353-smc.h                   |   37 ++
 5 files changed, 606 insertions(+), 0 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/memory-controllers/pl353-smc.txt
 create mode 100644 drivers/memory/pl353-smc.c
 create mode 100644 include/linux/memory/pl353-smc.h

-- 
1.7.4


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

* [PATCH v5 0/2] Add arm pl353 smc driver for xilinx zynq soc
@ 2015-01-06 17:49 ` Punnaiah Choudary Kalluri
  0 siblings, 0 replies; 3+ messages in thread
From: Punnaiah Choudary Kalluri @ 2015-01-06 17:49 UTC (permalink / raw)
  To: robh+dt, pawel.moll, mark.rutland, ijc+devicetree, galak, rob,
	michal.simek, grant.likely, gregkh, jason, ezequiel.garcia, arnd,
	dwmw2, computersforpeace, artem.bityutskiy, pekon,
	jussi.kivilinna, acourbot, ivan.khoronzhuk, joern
  Cc: devicetree, linux-doc, linux-kernel, linux-mtd,
	kalluripunnaiahchoudary, kpc528, Punnaiah Choudary Kalluri

The following patches add arm pl353 static memory controller driver for
xilinx zynq soc. The arm pl353 smc supports two interfaces i.e nand and
nor/sram memory interfaces. The current implementation supports only a
single SMC instance and nand specific configuration.

xilinx zynq TRM link:
http://www.xilinx.com/support/documentation/user_guides/ug585-Zynq-7000-TRM.pdf

ARM pl353 smc TRM link:
http://infocenter.arm.com/help/topic/com.arm.doc.ddi0380g/
DDI0380G_smc_pl350_series_r2p1_trm.pdf

Punnaiah Choudary Kalluri (2):
  Devicetree: Add pl353 smc controller devicetree binding information
  memory: pl353: Add driver for arm pl353 static memory controller

 .../bindings/memory-controllers/pl353-smc.txt      |   37 ++
 drivers/memory/Kconfig                             |    6 +
 drivers/memory/Makefile                            |    1 +
 drivers/memory/pl353-smc.c                         |  525 ++++++++++++++++++++
 include/linux/memory/pl353-smc.h                   |   37 ++
 5 files changed, 606 insertions(+), 0 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/memory-controllers/pl353-smc.txt
 create mode 100644 drivers/memory/pl353-smc.c
 create mode 100644 include/linux/memory/pl353-smc.h

-- 
1.7.4


______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/

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

* [PATCH v5 0/2] Add arm pl353 smc driver for xilinx zynq soc
@ 2015-01-06 17:49 ` Punnaiah Choudary Kalluri
  0 siblings, 0 replies; 3+ messages in thread
From: Punnaiah Choudary Kalluri @ 2015-01-06 17:49 UTC (permalink / raw)
  To: robh+dt, pawel.moll, mark.rutland, ijc+devicetree, galak, rob,
	michal.simek, grant.likely, gregkh, jason, ezequiel.garcia, arnd,
	dwmw2, computersforpeace, artem.bityutskiy, pekon,
	jussi.kivilinna, acourbot, ivan.khoronzhuk, joern
  Cc: devicetree, linux-doc, linux-kernel, linux-mtd,
	kalluripunnaiahchoudary, kpc528, Punnaiah Choudary Kalluri

The following patches add arm pl353 static memory controller driver for
xilinx zynq soc. The arm pl353 smc supports two interfaces i.e nand and
nor/sram memory interfaces. The current implementation supports only a
single SMC instance and nand specific configuration.

xilinx zynq TRM link:
http://www.xilinx.com/support/documentation/user_guides/ug585-Zynq-7000-TRM.pdf

ARM pl353 smc TRM link:
http://infocenter.arm.com/help/topic/com.arm.doc.ddi0380g/
DDI0380G_smc_pl350_series_r2p1_trm.pdf

Punnaiah Choudary Kalluri (2):
  Devicetree: Add pl353 smc controller devicetree binding information
  memory: pl353: Add driver for arm pl353 static memory controller

 .../bindings/memory-controllers/pl353-smc.txt      |   37 ++
 drivers/memory/Kconfig                             |    6 +
 drivers/memory/Makefile                            |    1 +
 drivers/memory/pl353-smc.c                         |  525 ++++++++++++++++++++
 include/linux/memory/pl353-smc.h                   |   37 ++
 5 files changed, 606 insertions(+), 0 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/memory-controllers/pl353-smc.txt
 create mode 100644 drivers/memory/pl353-smc.c
 create mode 100644 include/linux/memory/pl353-smc.h

-- 
1.7.4

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

end of thread, other threads:[~2015-01-06 18:04 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-01-06 17:49 [PATCH v5 0/2] Add arm pl353 smc driver for xilinx zynq soc Punnaiah Choudary Kalluri
2015-01-06 17:49 ` Punnaiah Choudary Kalluri
2015-01-06 17:49 ` Punnaiah Choudary Kalluri

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.