From: Andrey Smirnov <andrew.smirnov@gmail.com>
To: barebox@lists.infradead.org
Cc: Andrey Smirnov <andrew.smirnov@gmail.com>
Subject: [PATCH v2 00/11] AT91, at91sam9x5ek updates (part II/III)
Date: Thu, 16 Mar 2017 08:04:37 -0700 [thread overview]
Message-ID: <20170316150448.11773-1-andrew.smirnov@gmail.com> (raw)
Hi everone,
This is v2 of the second batch of AT91 related patches (original thread
[1]). The patches gathered in this set are with a few exceptions are
patches adding DT probing support for various AT91 drivers.
Feedback from Sam has been incorporated, but other than that the code
should be as it was in [1].
Any feedback is appreciated.
Thank you,
Andrey Smirnov
Changes since v1 (see [v1])
- Added const specifiers to DT ID tables, as pointed out by Sam
- Collected Acked-by from Sam
[v1] http://lists.infradead.org/pipermail/barebox/2017-March/029568.html
[1] http://lists.infradead.org/pipermail/barebox/2017-March/029337.html
Andrey Smirnov (11):
clocksource: at91: Add DT compatibility table
serial: atmel: Add DT compatibility table
clk: at91: Port at91 DT clock code
mci: Allow parsing for explicit DT node
mci: atmel_mci: Add DT support
spi: atmel_spi: Add DT support
w1-gpio: Add DT support
usb: ohci-at91: Add DT support
usb/host: Allow USB_OHCI_AT91 even if USB_OHCI is disabled
usb: echi-atmel: Add DT support
net: macb: Add DT support
arch/arm/Kconfig | 1 +
arch/arm/mach-at91/Kconfig | 20 ++
arch/arm/mach-at91/include/mach/board.h | 6 +-
drivers/clk/Makefile | 1 +
drivers/clk/at91/Makefile | 15 +
drivers/clk/at91/clk-generated.c | 323 ++++++++++++++++++
drivers/clk/at91/clk-h32mx.c | 125 +++++++
drivers/clk/at91/clk-main.c | 576 ++++++++++++++++++++++++++++++++
drivers/clk/at91/clk-master.c | 245 ++++++++++++++
drivers/clk/at91/clk-peripheral.c | 430 ++++++++++++++++++++++++
drivers/clk/at91/clk-pll.c | 516 ++++++++++++++++++++++++++++
drivers/clk/at91/clk-plldiv.c | 135 ++++++++
drivers/clk/at91/clk-programmable.c | 254 ++++++++++++++
drivers/clk/at91/clk-slow.c | 108 ++++++
drivers/clk/at91/clk-smd.c | 172 ++++++++++
drivers/clk/at91/clk-system.c | 160 +++++++++
drivers/clk/at91/clk-usb.c | 397 ++++++++++++++++++++++
drivers/clk/at91/clk-utmi.c | 138 ++++++++
drivers/clk/at91/pmc.c | 41 +++
drivers/clk/at91/pmc.h | 27 ++
drivers/clk/at91/sckc.c | 485 +++++++++++++++++++++++++++
drivers/clocksource/timer-atmel-pit.c | 9 +
drivers/mci/atmel_mci.c | 101 ++++--
drivers/mci/mci-core.c | 13 +-
drivers/net/macb.c | 56 +++-
drivers/serial/atmel.c | 7 +
drivers/spi/atmel_spi.c | 29 +-
drivers/usb/host/Kconfig | 5 +-
drivers/usb/host/ehci-atmel.c | 11 +-
drivers/usb/host/ohci-at91.c | 93 +++++-
drivers/w1/masters/w1-gpio.c | 53 +++
include/linux/clk/at91_pmc.h | 188 +++++++++++
include/mci.h | 1 +
33 files changed, 4679 insertions(+), 62 deletions(-)
create mode 100644 drivers/clk/at91/Makefile
create mode 100644 drivers/clk/at91/clk-generated.c
create mode 100644 drivers/clk/at91/clk-h32mx.c
create mode 100644 drivers/clk/at91/clk-main.c
create mode 100644 drivers/clk/at91/clk-master.c
create mode 100644 drivers/clk/at91/clk-peripheral.c
create mode 100644 drivers/clk/at91/clk-pll.c
create mode 100644 drivers/clk/at91/clk-plldiv.c
create mode 100644 drivers/clk/at91/clk-programmable.c
create mode 100644 drivers/clk/at91/clk-slow.c
create mode 100644 drivers/clk/at91/clk-smd.c
create mode 100644 drivers/clk/at91/clk-system.c
create mode 100644 drivers/clk/at91/clk-usb.c
create mode 100644 drivers/clk/at91/clk-utmi.c
create mode 100644 drivers/clk/at91/pmc.c
create mode 100644 drivers/clk/at91/pmc.h
create mode 100644 drivers/clk/at91/sckc.c
create mode 100644 include/linux/clk/at91_pmc.h
--
2.9.3
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next reply other threads:[~2017-03-16 15:05 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-03-16 15:04 Andrey Smirnov [this message]
2017-03-16 15:04 ` [PATCH v2 01/11] clocksource: at91: Add DT compatibility table Andrey Smirnov
2017-03-16 15:04 ` [PATCH v2 02/11] serial: atmel: " Andrey Smirnov
2017-03-16 15:04 ` [PATCH v2 03/11] clk: at91: Port at91 DT clock code Andrey Smirnov
2017-03-16 15:04 ` [PATCH v2 04/11] mci: Allow parsing for explicit DT node Andrey Smirnov
2017-03-16 15:04 ` [PATCH v2 05/11] mci: atmel_mci: Add DT support Andrey Smirnov
2017-03-16 15:04 ` [PATCH v2 06/11] spi: atmel_spi: " Andrey Smirnov
2017-03-16 15:04 ` [PATCH v2 07/11] w1-gpio: " Andrey Smirnov
2017-03-16 15:04 ` [PATCH v2 08/11] usb: ohci-at91: " Andrey Smirnov
2017-03-16 15:04 ` [PATCH v2 09/11] usb/host: Allow USB_OHCI_AT91 even if USB_OHCI is disabled Andrey Smirnov
2017-03-16 15:04 ` [PATCH v2 10/11] usb: echi-atmel: Add DT support Andrey Smirnov
2017-03-16 15:04 ` [PATCH v2 11/11] net: macb: " Andrey Smirnov
2017-07-08 22:35 ` Sam Ravnborg
2017-07-10 22:05 ` Andrey Smirnov
2017-03-17 12:19 ` [PATCH v2 00/11] AT91, at91sam9x5ek updates (part II/III) Sascha Hauer
2017-03-20 3:21 ` Andrey Smirnov
2017-04-15 21:50 ` Sam Ravnborg
2017-04-19 9:42 ` Sascha Hauer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20170316150448.11773-1-andrew.smirnov@gmail.com \
--to=andrew.smirnov@gmail.com \
--cc=barebox@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox