All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/3] Adding NPS400 drivers
@ 2016-02-02 13:14 ` Noam Camus
  0 siblings, 0 replies; 60+ messages in thread
From: Noam Camus @ 2016-02-02 13:14 UTC (permalink / raw)
  To: linux-kernel
  Cc: linux-snps-arc, daniel.lezcano, marc.zyngier, cmetcalf, talz,
	giladb, Noam Camus

From: Noam Camus <noamc@ezchip.com>

Change Log--
v2:
Add header file include/soc/nps/common.h.
Now to build we do not depend on ARC subtree.

General summay:
Both drivers are now apart of previous basic patch set of new platform for ARC.
The rest is now can be seen at ARC srctree:
https://git.kernel.org/cgit/linux/kernel/git/vgupta/arc.git/

Now ARC is supporting DT for clockevents and the interrupt controller ARC
uses irq domain handling.

Compare to last version now clocksource driver do not include clockevent registration
since NPS400 can use ARC generic driver.

Compare to last version now irqchip driver sets domain as default since it is the root domain.
Also mapping of IPI is done in this driver.

Last thing is that drivers can be build cleanly for i386 (still runs only for ARC)
Note: in order to build we need to merge drivers into srctree which includes new header:
soc/nps/common.h
This header is part of patch set applied to ARC srctree.

Regards,
Noam Camus

Noam Camus (3):
  soc: Support for EZchip SoC
  clocksource: Add NPS400 timers driver
  irqchip: add nps Internal and external irqchips

 .../interrupt-controller/ezchip,nps400-ic.txt      |   17 +++
 .../bindings/timer/ezchip,nps400-timer.txt         |   15 ++
 drivers/clocksource/Kconfig                        |    7 +
 drivers/clocksource/Makefile                       |    1 +
 drivers/clocksource/timer-nps.c                    |   84 +++++++++++
 drivers/irqchip/Kconfig                            |    6 +
 drivers/irqchip/Makefile                           |    1 +
 drivers/irqchip/irq-eznps.c                        |  151 ++++++++++++++++++++
 include/soc/nps/common.h                           |  140 ++++++++++++++++++
 9 files changed, 422 insertions(+), 0 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/interrupt-controller/ezchip,nps400-ic.txt
 create mode 100644 Documentation/devicetree/bindings/timer/ezchip,nps400-timer.txt
 create mode 100644 drivers/clocksource/timer-nps.c
 create mode 100644 drivers/irqchip/irq-eznps.c
 create mode 100644 include/soc/nps/common.h

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

end of thread, other threads:[~2016-02-19 14:42 UTC | newest]

Thread overview: 60+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-02-02 13:14 [PATCH v2 0/3] Adding NPS400 drivers Noam Camus
2016-02-02 13:14 ` Noam Camus
2016-02-02 13:14 ` [PATCH v2 1/3] soc: Support for EZchip SoC Noam Camus
2016-02-02 13:14   ` Noam Camus
2016-02-02 13:14 ` [PATCH v2 2/3] clocksource: Add NPS400 timers driver Noam Camus
2016-02-02 13:14   ` Noam Camus
2016-02-02 14:36   ` kbuild test robot
2016-02-02 14:36     ` kbuild test robot
2016-02-02 13:14 ` [PATCH v2 3/3] irqchip: add nps Internal and external irqchips Noam Camus
2016-02-02 13:14   ` Noam Camus
2016-02-02 13:35   ` Thomas Gleixner
2016-02-02 13:35     ` Thomas Gleixner
2016-02-02 20:40   ` kbuild test robot
2016-02-02 20:40     ` kbuild test robot
2016-02-06 16:16 ` [PATCH v3 0/3] Adding NPS400 drivers Noam Camus
2016-02-06 16:16   ` Noam Camus
2016-02-11  3:02   ` [PATCH v4 " Noam Camus
2016-02-11  3:02     ` Noam Camus
2016-02-11 18:40     ` [PATCH v5 " Noam Camus
2016-02-11 18:40       ` Noam Camus
2016-02-17  7:05       ` Noam Camus
2016-02-17  7:05         ` Noam Camus
2016-02-11 18:40     ` [PATCH v5 1/3] soc: Support for EZchip SoC Noam Camus
2016-02-11 18:40       ` Noam Camus
2016-02-11 18:40     ` [PATCH v5 2/3] clocksource: Add NPS400 timers driver Noam Camus
2016-02-11 18:40       ` Noam Camus
2016-02-11 20:29       ` Daniel Lezcano
2016-02-11 20:29         ` Daniel Lezcano
2016-02-11 18:40     ` [PATCH v5 3/3] irqchip: add nps Internal and external irqchips Noam Camus
2016-02-11 18:40       ` Noam Camus
2016-02-19 14:03       ` Jason Cooper
2016-02-19 14:03         ` Jason Cooper
2016-02-19 14:42         ` Noam Camus
2016-02-19 14:42           ` Noam Camus
2016-02-11  3:02   ` [PATCH v4 1/3] soc: Support for EZchip SoC Noam Camus
2016-02-11  3:02     ` Noam Camus
2016-02-11  3:02   ` [PATCH v4 2/3] clocksource: Add NPS400 timers driver Noam Camus
2016-02-11  3:02     ` Noam Camus
2016-02-11  8:18     ` Daniel Lezcano
2016-02-11  8:18       ` Daniel Lezcano
2016-02-11  3:02   ` [PATCH v4 3/3] irqchip: add nps Internal and external irqchips Noam Camus
2016-02-11  3:02     ` Noam Camus
2016-02-06 16:16 ` [PATCH v3 1/3] soc: Support for EZchip SoC Noam Camus
2016-02-06 16:16   ` Noam Camus
2016-02-06 16:16 ` [PATCH v3 2/3] clocksource: Add NPS400 timers driver Noam Camus
2016-02-06 16:16   ` Noam Camus
2016-02-08 14:21   ` Daniel Lezcano
2016-02-08 14:21     ` Daniel Lezcano
2016-02-09 12:36     ` Noam Camus
2016-02-09 12:36       ` Noam Camus
2016-02-09 13:38       ` Daniel Lezcano
2016-02-09 13:38         ` Daniel Lezcano
2016-02-09 21:47         ` Noam Camus
2016-02-09 21:47           ` Noam Camus
2016-02-09 22:55           ` Daniel Lezcano
2016-02-09 22:55             ` Daniel Lezcano
2016-02-10  8:01             ` Noam Camus
2016-02-10  8:01               ` Noam Camus
2016-02-06 16:16 ` [PATCH v3 3/3] irqchip: add nps Internal and external irqchips Noam Camus
2016-02-06 16:16   ` Noam Camus

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.