From: u.kleine-koenig@pengutronix.de (Uwe Kleine-König)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v4 4/4] ARM: new platform for Energy Micro's EFM32 Cortex-M3 SoCs
Date: Tue, 5 Nov 2013 10:48:55 +0100 [thread overview]
Message-ID: <20131105094854.GL14892@pengutronix.de> (raw)
In-Reply-To: <201311041456.27654.arnd@arndb.de>
On Mon, Nov 04, 2013 at 02:56:27PM +0100, Arnd Bergmann wrote:
> On Monday 04 November 2013, Uwe Kleine-K?nig wrote:
> > Signed-off-by: Uwe Kleine-K?nig <u.kleine-koenig@pengutronix.de>
> > ---
> > arch/arm/Kconfig | 19 +++++++-
> > arch/arm/Makefile | 1 +
> > arch/arm/configs/efm32_defconfig | 102 +++++++++++++++++++++++++++++++++++++++
> > arch/arm/mach-efm32/Makefile | 1 +
> > arch/arm/mach-efm32/dtmachine.c | 15 ++++++
> > 5 files changed, 137 insertions(+), 1 deletion(-)
> > create mode 100644 arch/arm/configs/efm32_defconfig
> > create mode 100644 arch/arm/mach-efm32/Makefile
> > create mode 100644 arch/arm/mach-efm32/dtmachine.c
> >
> > diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
> > index 7ae0615..d8145fe 100644
> > --- a/arch/arm/Kconfig
> > +++ b/arch/arm/Kconfig
> > @@ -413,6 +413,23 @@ config ARCH_EBSA110
> > Ethernet interface, two PCMCIA sockets, two serial ports and a
> > parallel port.
> >
> > +config ARCH_EFM32
> > + bool "Energy Micro efm32"
> > + depends on !MMU
> > + select ARCH_REQUIRE_GPIOLIB
> > + select ARM_NVIC
> > + select CLKSRC_MMIO
> > + select CLKSRC_OF
> > + select COMMON_CLK
> > + select CPU_V7M
> > + select GENERIC_CLOCKEVENTS
> > + select NO_DMA
> > + select NO_IOPORT
> > + select SPARSE_IRQ
> > + select USE_OF
> > + help
> > + Support for Energy Micro's (now Silicon Labs) efm32 processors.
> > +
>
> It would be good to have at least in either the changeset description or the Kconfig
> text (or both) some description about the platform: which SoCs have been tested,
> what is this platform used for, where can one find data sheets etc.
I have links to the datasheet of the processor and the user manual of
the board in the corresponding device trees. Also I added a paragraph to
the commit log mentioning the development board I used:
There are still some missing parts (e.g. board support, device
trees), but with these bits added on top of this patch I can
successfully boot a EFM32GG-DK3750 board that uses an
EFM32GG990F1024.
Good enough?
Best regards
Uwe
--
Pengutronix e.K. | Uwe Kleine-K?nig |
Industrial Linux Solutions | http://www.pengutronix.de/ |
next prev parent reply other threads:[~2013-11-05 9:48 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-11-04 10:58 [PATCH v4 0/4] Energy Micro efm32 support Uwe Kleine-König
2013-11-04 11:00 ` [PATCH v4 1/4] ARM: deprecate mach/timex.h for !ARCH_MULTIPLATFORM Uwe Kleine-König
2013-11-04 13:53 ` Arnd Bergmann
2013-11-05 8:33 ` Uwe Kleine-König
2013-11-05 9:03 ` [PATCH] ARM: u300: fix timekeeping when periodic mode is used Uwe Kleine-König
2013-11-05 9:44 ` Linus Walleij
2013-11-25 21:13 ` Uwe Kleine-König
2013-11-26 12:32 ` Linus Walleij
2013-11-05 9:12 ` [PATCH v5 1/4] ARM: deprecate mach/timex.h for !ARCH_MULTIPLATFORM Uwe Kleine-König
2013-11-05 9:42 ` Linus Walleij
2013-11-05 10:01 ` Uwe Kleine-König
2013-11-05 11:34 ` Arnd Bergmann
2013-11-05 11:37 ` Linus Walleij
2013-11-05 11:45 ` Russell King - ARM Linux
2013-11-05 12:26 ` Arnd Bergmann
2013-11-05 13:27 ` Uwe Kleine-König
2013-11-05 14:58 ` Arnd Bergmann
2013-11-05 11:52 ` Uwe Kleine-König
2013-11-04 11:00 ` [PATCH v4 2/4] ARM: make mach-xyz/Makefile.boot optional " Uwe Kleine-König
2013-11-11 19:35 ` Olof Johansson
2015-01-30 9:32 ` Uwe Kleine-König
2013-11-04 11:00 ` [PATCH v4 3/4] ARM: v7-M: drop using mach/entry-macro.S Uwe Kleine-König
2013-11-11 19:35 ` Olof Johansson
2013-11-04 11:00 ` [PATCH v4 4/4] ARM: new platform for Energy Micro's EFM32 Cortex-M3 SoCs Uwe Kleine-König
2013-11-04 13:56 ` Arnd Bergmann
2013-11-05 9:48 ` Uwe Kleine-König [this message]
2013-11-05 11:10 ` Arnd Bergmann
2013-11-19 10:20 ` [PATCH v4 0/4] Energy Micro efm32 support Uwe Kleine-König
2013-11-19 13:11 ` Arnd Bergmann
2013-11-19 19:08 ` Uwe Kleine-König
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=20131105094854.GL14892@pengutronix.de \
--to=u.kleine-koenig@pengutronix.de \
--cc=linux-arm-kernel@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;
as well as URLs for NNTP newsgroup(s).