Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1329637
| From | Duc Dang <dhdang@apm.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH v5 0/3] mailbox: Add APM X-Gene platform mailbox driver |
| Date | 2016-02-08 23:20 +0100 |
| Message-ID | <r02k2-2Zq-11@gated-at.bofh.it> (permalink) |
| References | <qXBxE-5VB-5@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
APM X-Gene SoC has a mailbox controller that provides
communication mechanism for X-Gene Arm64 cores to communicate
with X-Gene SoC's Cortex M3 (SLIMpro) processor.
X-Gene mailbox controller provides 8 mailbox channels, with
each channel has a dedicated interrupt line.
Changes since v4:
- Rebase over v4.5-rc1
- Fix section mismatch warning during compiling
- Correctly print channel number when there is
no IRQ for that channel
- Change node name to mailbox@10540000
- Correct the number of IRQs in documentation
Changes since v3:
- Rebase over v4.4
- Remove 'id' in slimpro_mbox_chan structure
- Remove functions that are only called once
and fold them into the other callers
- Remove void* pointer type cast
- Relax the number of mailbox IRQs condition
- Fix error and address comment in documentation
(xgene-slimpro-mailbox.txt)
Changes since v2:
- Rebase Feng's patch set over v4.3-rc5
- Remove uneccessary 'inline' in function definition
- Use module_platform_driver instead of subsys_initcall
- Minor coding stype clean up
Changes since v1:
- Add ACPI support
- Use defines for reg offset
Duc Dang (3):
mailbox: Add support for APM X-Gene platform mailbox driver
Documentation: mailbox: Add APM X-Gene SLIMpro mailbox dts
documentation
arm64: dts: mailbox device tree node for APM X-Gene platform.
.../bindings/mailbox/xgene-slimpro-mailbox.txt | 35 +++
arch/arm64/boot/dts/apm/apm-storm.dtsi | 14 ++
drivers/mailbox/Kconfig | 9 +
drivers/mailbox/Makefile | 2 +
drivers/mailbox/mailbox-xgene-slimpro.c | 264 +++++++++++++++++++++
5 files changed, 324 insertions(+)
create mode 100644 Documentation/devicetree/bindings/mailbox/xgene-slimpro-mailbox.txt
create mode 100644 drivers/mailbox/mailbox-xgene-slimpro.c
--
1.9.1
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Re: [PATCH v4 1/3] mailbox: Add support for APM X-Gene platform mailbox driver Duc Dang <dhdang@apm.com> - 2016-02-01 20:40 +0100
Re: [PATCH v4 1/3] mailbox: Add support for APM X-Gene platform mailbox driver Jassi Brar <jassisinghbrar@gmail.com> - 2016-02-02 06:20 +0100
[PATCH v5 0/3] mailbox: Add APM X-Gene platform mailbox driver Duc Dang <dhdang@apm.com> - 2016-02-08 23:20 +0100
[PATCH v5 1/3] mailbox: Add support for APM X-Gene platform mailbox driver Duc Dang <dhdang@apm.com> - 2016-02-08 23:20 +0100
Re: [PATCH v5 1/3] mailbox: Add support for APM X-Gene platform mailbox driver Mathieu Poirier <mathieu.poirier@linaro.org> - 2016-02-09 17:50 +0100
Re: [PATCH v5 1/3] mailbox: Add support for APM X-Gene platform mailbox driver Duc Dang <dhdang@apm.com> - 2016-02-10 04:50 +0100
Re: [PATCH v5 1/3] mailbox: Add support for APM X-Gene platform mailbox driver Mathieu Poirier <mathieu.poirier@linaro.org> - 2016-02-10 15:50 +0100
Re: [PATCH v5 1/3] mailbox: Add support for APM X-Gene platform mailbox driver Duc Dang <dhdang@apm.com> - 2016-02-13 04:30 +0100
[PATCH v6 0/3] mailbox: Add APM X-Gene platform mailbox driver Duc Dang <dhdang@apm.com> - 2016-02-13 04:50 +0100
Re: [PATCH v6 0/3] mailbox: Add APM X-Gene platform mailbox driver Duc Dang <dhdang@apm.com> - 2016-02-19 21:50 +0100
csiph-web