From: Arnd Bergmann <arnd@arndb.de>
To: linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH 01/02] mach-shmobile: Emma Mobile EV2 SoC base support
Date: Fri, 04 May 2012 13:07:45 +0000 [thread overview]
Message-ID: <201205041307.46080.arnd@arndb.de> (raw)
In-Reply-To: <20120503144654.6390.56399.sendpatchset@w520>
On Thursday 03 May 2012, Magnus Damm wrote:
> +
> +/* EMEV2 SMU registers */
> +#define USIAU0_RSTCTRL 0xe0110094
> +#define USIBU1_RSTCTRL 0xe01100ac
> +#define USIBU2_RSTCTRL 0xe01100b0
> +#define USIBU3_RSTCTRL 0xe01100b4
> +#define STI_RSTCTRL 0xe0110124
> +#define USIAU0GCLKCTRL 0xe01104a0
> +#define USIBU1GCLKCTRL 0xe01104b8
> +#define USIBU2GCLKCTRL 0xe01104bc
> +#define USIBU3GCLKCTRL 0xe01104c0
> +#define STIGCLKCTRL 0xe0110528
> +#define USIAU0SCLKDIV 0xe011061c
> +#define USIB2SCLKDIV 0xe011065c
> +#define USIB3SCLKDIV 0xe0110660
> +#define STI_CLKSEL 0xe0110688
Please cast to __iomem* here, e.g. using the IOMEM() macro, as these are
virtual addresses.
> +void __init emev2_clock_init(void)
> +{
> + int k, ret = 0;
> +
> + /* setup STI timer to run on 37.768 kHz and deassert reset */
> + __raw_writel(0, STI_CLKSEL);
> + __raw_writel(1, STI_RSTCTRL);
> +
> + /* deassert reset for UART0->UART3 */
> + __raw_writel(2, USIAU0_RSTCTRL);
> + __raw_writel(2, USIBU1_RSTCTRL);
> + __raw_writel(2, USIBU2_RSTCTRL);
> + __raw_writel(2, USIBU3_RSTCTRL);
Better use iowrite32 or writel or writel_relaxed here, but not __raw_*.
> --- 0003/arch/arm/mach-shmobile/include/mach/common.h
> +++ work/arch/arm/mach-shmobile/include/mach/common.h 2012-05-03 20:45:56.000000000 +0900
> @@ -85,4 +85,10 @@ extern void r8a7779_secondary_init(unsig
> extern int r8a7779_boot_secondary(unsigned int cpu);
> extern void r8a7779_smp_prepare_cpus(void);
>
> +extern void emev2_init_irq(void);
> +extern void emev2_map_io(void);
> +extern void emev2_add_early_devices(void);
> +extern void emev2_add_standard_devices(void);
> +extern void emev2_clock_init(void);
> +
> #endif /* __ARCH_MACH_COMMON_H */
I would feel more comfortable with a separate header for this than putting
it into the same file as everything else, but it's not important to me.
> --- /dev/null
> +++ work/arch/arm/mach-shmobile/intc-emev2.c 2012-05-03 20:45:57.000000000 +0900
> +
> +void __init emev2_init_irq(void)
> +{
> + void __iomem *gic_dist_base = IOMEM(0xe0028000);
> + void __iomem *gic_cpu_base = IOMEM(0xe0020000);
> +
> + /* use GIC to handle interrupts */
> + gic_init(0, 29, gic_dist_base, gic_cpu_base);
> +}
This could just go into teh setup-emev2.c file, it doesn't actually do much,
and the other file is where the constants are coming from anyway. Then you
can put it right next to this code:
> +static struct map_desc emev2_io_desc[] __initdata = {
> + /* 128K entity map for 0xe0020000 (GIC) */
> + {
> + .virtual = 0xe0020000,
> + .pfn = __phys_to_pfn(0xe0020000),
> + .length = SZ_128K,
> + .type = MT_UNCACHED
> + },
> + /* 128K entity map for 0xe0100000 (SMU) */
> + {
> + .virtual = 0xe0100000,
> + .pfn = __phys_to_pfn(0xe0100000),
> + .length = SZ_128K,
> + .type = MT_DEVICE
> + },
> +};
> +
> +void __init emev2_map_io(void)
> +{
> + iotable_init(emev2_io_desc, ARRAY_SIZE(emev2_io_desc));
> +}
Arnd
WARNING: multiple messages have this Message-ID (diff)
From: arnd@arndb.de (Arnd Bergmann)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 01/02] mach-shmobile: Emma Mobile EV2 SoC base support
Date: Fri, 4 May 2012 13:07:45 +0000 [thread overview]
Message-ID: <201205041307.46080.arnd@arndb.de> (raw)
In-Reply-To: <20120503144654.6390.56399.sendpatchset@w520>
On Thursday 03 May 2012, Magnus Damm wrote:
> +
> +/* EMEV2 SMU registers */
> +#define USIAU0_RSTCTRL 0xe0110094
> +#define USIBU1_RSTCTRL 0xe01100ac
> +#define USIBU2_RSTCTRL 0xe01100b0
> +#define USIBU3_RSTCTRL 0xe01100b4
> +#define STI_RSTCTRL 0xe0110124
> +#define USIAU0GCLKCTRL 0xe01104a0
> +#define USIBU1GCLKCTRL 0xe01104b8
> +#define USIBU2GCLKCTRL 0xe01104bc
> +#define USIBU3GCLKCTRL 0xe01104c0
> +#define STIGCLKCTRL 0xe0110528
> +#define USIAU0SCLKDIV 0xe011061c
> +#define USIB2SCLKDIV 0xe011065c
> +#define USIB3SCLKDIV 0xe0110660
> +#define STI_CLKSEL 0xe0110688
Please cast to __iomem* here, e.g. using the IOMEM() macro, as these are
virtual addresses.
> +void __init emev2_clock_init(void)
> +{
> + int k, ret = 0;
> +
> + /* setup STI timer to run on 37.768 kHz and deassert reset */
> + __raw_writel(0, STI_CLKSEL);
> + __raw_writel(1, STI_RSTCTRL);
> +
> + /* deassert reset for UART0->UART3 */
> + __raw_writel(2, USIAU0_RSTCTRL);
> + __raw_writel(2, USIBU1_RSTCTRL);
> + __raw_writel(2, USIBU2_RSTCTRL);
> + __raw_writel(2, USIBU3_RSTCTRL);
Better use iowrite32 or writel or writel_relaxed here, but not __raw_*.
> --- 0003/arch/arm/mach-shmobile/include/mach/common.h
> +++ work/arch/arm/mach-shmobile/include/mach/common.h 2012-05-03 20:45:56.000000000 +0900
> @@ -85,4 +85,10 @@ extern void r8a7779_secondary_init(unsig
> extern int r8a7779_boot_secondary(unsigned int cpu);
> extern void r8a7779_smp_prepare_cpus(void);
>
> +extern void emev2_init_irq(void);
> +extern void emev2_map_io(void);
> +extern void emev2_add_early_devices(void);
> +extern void emev2_add_standard_devices(void);
> +extern void emev2_clock_init(void);
> +
> #endif /* __ARCH_MACH_COMMON_H */
I would feel more comfortable with a separate header for this than putting
it into the same file as everything else, but it's not important to me.
> --- /dev/null
> +++ work/arch/arm/mach-shmobile/intc-emev2.c 2012-05-03 20:45:57.000000000 +0900
> +
> +void __init emev2_init_irq(void)
> +{
> + void __iomem *gic_dist_base = IOMEM(0xe0028000);
> + void __iomem *gic_cpu_base = IOMEM(0xe0020000);
> +
> + /* use GIC to handle interrupts */
> + gic_init(0, 29, gic_dist_base, gic_cpu_base);
> +}
This could just go into teh setup-emev2.c file, it doesn't actually do much,
and the other file is where the constants are coming from anyway. Then you
can put it right next to this code:
> +static struct map_desc emev2_io_desc[] __initdata = {
> + /* 128K entity map for 0xe0020000 (GIC) */
> + {
> + .virtual = 0xe0020000,
> + .pfn = __phys_to_pfn(0xe0020000),
> + .length = SZ_128K,
> + .type = MT_UNCACHED
> + },
> + /* 128K entity map for 0xe0100000 (SMU) */
> + {
> + .virtual = 0xe0100000,
> + .pfn = __phys_to_pfn(0xe0100000),
> + .length = SZ_128K,
> + .type = MT_DEVICE
> + },
> +};
> +
> +void __init emev2_map_io(void)
> +{
> + iotable_init(emev2_io_desc, ARRAY_SIZE(emev2_io_desc));
> +}
Arnd
WARNING: multiple messages have this Message-ID (diff)
From: Arnd Bergmann <arnd@arndb.de>
To: Magnus Damm <magnus.damm@gmail.com>
Cc: linux-arm-kernel@lists.infradead.org, linux@arm.linux.org.uk,
linux-sh@vger.kernel.org, lethal@linux-sh.org,
linux-kernel@vger.kernel.org, rjw@sisk.pl, horms@verge.net.au,
olof@lixom.net
Subject: Re: [PATCH 01/02] mach-shmobile: Emma Mobile EV2 SoC base support
Date: Fri, 4 May 2012 13:07:45 +0000 [thread overview]
Message-ID: <201205041307.46080.arnd@arndb.de> (raw)
In-Reply-To: <20120503144654.6390.56399.sendpatchset@w520>
On Thursday 03 May 2012, Magnus Damm wrote:
> +
> +/* EMEV2 SMU registers */
> +#define USIAU0_RSTCTRL 0xe0110094
> +#define USIBU1_RSTCTRL 0xe01100ac
> +#define USIBU2_RSTCTRL 0xe01100b0
> +#define USIBU3_RSTCTRL 0xe01100b4
> +#define STI_RSTCTRL 0xe0110124
> +#define USIAU0GCLKCTRL 0xe01104a0
> +#define USIBU1GCLKCTRL 0xe01104b8
> +#define USIBU2GCLKCTRL 0xe01104bc
> +#define USIBU3GCLKCTRL 0xe01104c0
> +#define STIGCLKCTRL 0xe0110528
> +#define USIAU0SCLKDIV 0xe011061c
> +#define USIB2SCLKDIV 0xe011065c
> +#define USIB3SCLKDIV 0xe0110660
> +#define STI_CLKSEL 0xe0110688
Please cast to __iomem* here, e.g. using the IOMEM() macro, as these are
virtual addresses.
> +void __init emev2_clock_init(void)
> +{
> + int k, ret = 0;
> +
> + /* setup STI timer to run on 37.768 kHz and deassert reset */
> + __raw_writel(0, STI_CLKSEL);
> + __raw_writel(1, STI_RSTCTRL);
> +
> + /* deassert reset for UART0->UART3 */
> + __raw_writel(2, USIAU0_RSTCTRL);
> + __raw_writel(2, USIBU1_RSTCTRL);
> + __raw_writel(2, USIBU2_RSTCTRL);
> + __raw_writel(2, USIBU3_RSTCTRL);
Better use iowrite32 or writel or writel_relaxed here, but not __raw_*.
> --- 0003/arch/arm/mach-shmobile/include/mach/common.h
> +++ work/arch/arm/mach-shmobile/include/mach/common.h 2012-05-03 20:45:56.000000000 +0900
> @@ -85,4 +85,10 @@ extern void r8a7779_secondary_init(unsig
> extern int r8a7779_boot_secondary(unsigned int cpu);
> extern void r8a7779_smp_prepare_cpus(void);
>
> +extern void emev2_init_irq(void);
> +extern void emev2_map_io(void);
> +extern void emev2_add_early_devices(void);
> +extern void emev2_add_standard_devices(void);
> +extern void emev2_clock_init(void);
> +
> #endif /* __ARCH_MACH_COMMON_H */
I would feel more comfortable with a separate header for this than putting
it into the same file as everything else, but it's not important to me.
> --- /dev/null
> +++ work/arch/arm/mach-shmobile/intc-emev2.c 2012-05-03 20:45:57.000000000 +0900
> +
> +void __init emev2_init_irq(void)
> +{
> + void __iomem *gic_dist_base = IOMEM(0xe0028000);
> + void __iomem *gic_cpu_base = IOMEM(0xe0020000);
> +
> + /* use GIC to handle interrupts */
> + gic_init(0, 29, gic_dist_base, gic_cpu_base);
> +}
This could just go into teh setup-emev2.c file, it doesn't actually do much,
and the other file is where the constants are coming from anyway. Then you
can put it right next to this code:
> +static struct map_desc emev2_io_desc[] __initdata = {
> + /* 128K entity map for 0xe0020000 (GIC) */
> + {
> + .virtual = 0xe0020000,
> + .pfn = __phys_to_pfn(0xe0020000),
> + .length = SZ_128K,
> + .type = MT_UNCACHED
> + },
> + /* 128K entity map for 0xe0100000 (SMU) */
> + {
> + .virtual = 0xe0100000,
> + .pfn = __phys_to_pfn(0xe0100000),
> + .length = SZ_128K,
> + .type = MT_DEVICE
> + },
> +};
> +
> +void __init emev2_map_io(void)
> +{
> + iotable_init(emev2_io_desc, ARRAY_SIZE(emev2_io_desc));
> +}
Arnd
next prev parent reply other threads:[~2012-05-04 13:07 UTC|newest]
Thread overview: 60+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-05-03 14:46 [PATCH 00/02] mach-shmobile: Emma Mobile EV2 - first shot Magnus Damm
2012-05-03 14:46 ` Magnus Damm
2012-05-03 14:46 ` Magnus Damm
2012-05-03 14:46 ` [PATCH 01/02] mach-shmobile: Emma Mobile EV2 SoC base support Magnus Damm
2012-05-03 14:46 ` Magnus Damm
2012-05-03 14:46 ` Magnus Damm
2012-05-04 13:07 ` Arnd Bergmann [this message]
2012-05-04 13:07 ` Arnd Bergmann
2012-05-04 13:07 ` Arnd Bergmann
2012-05-04 19:47 ` Arnd Bergmann
2012-05-04 19:47 ` Arnd Bergmann
2012-05-04 19:47 ` Arnd Bergmann
2012-05-08 16:56 ` Magnus Damm
2012-05-08 16:56 ` Magnus Damm
2012-05-08 16:56 ` Magnus Damm
2012-05-08 19:35 ` Arnd Bergmann
2012-05-08 19:35 ` Arnd Bergmann
2012-05-08 19:35 ` Arnd Bergmann
2012-05-03 14:47 ` [PATCH 02/02] mach-shmobile: KZM9D board prototype support Magnus Damm
2012-05-03 14:47 ` Magnus Damm
2012-05-03 14:47 ` Magnus Damm
2012-05-04 13:14 ` Arnd Bergmann
2012-05-04 13:14 ` Arnd Bergmann
2012-05-04 13:14 ` Arnd Bergmann
2012-05-03 19:23 ` [PATCH 00/02] mach-shmobile: Emma Mobile EV2 - first shot Rafael J. Wysocki
2012-05-03 19:23 ` Rafael J. Wysocki
2012-05-03 19:23 ` Rafael J. Wysocki
2012-05-04 19:57 ` Arnd Bergmann
2012-05-04 19:57 ` Arnd Bergmann
2012-05-04 19:57 ` Arnd Bergmann
2012-05-04 21:16 ` Rafael J. Wysocki
2012-05-04 21:16 ` Rafael J. Wysocki
2012-05-04 21:16 ` Rafael J. Wysocki
2012-05-05 7:22 ` Arnd Bergmann
2012-05-05 7:22 ` Arnd Bergmann
2012-05-05 7:22 ` Arnd Bergmann
2012-05-05 19:08 ` Rafael J. Wysocki
2012-05-05 19:08 ` Rafael J. Wysocki
2012-05-05 19:08 ` Rafael J. Wysocki
2012-05-05 19:21 ` Arnd Bergmann
2012-05-05 19:21 ` Arnd Bergmann
2012-05-05 19:21 ` Arnd Bergmann
2012-05-05 19:30 ` Rafael J. Wysocki
2012-05-05 19:30 ` Rafael J. Wysocki
2012-05-05 19:30 ` Rafael J. Wysocki
2012-05-05 19:50 ` Arnd Bergmann
2012-05-05 19:50 ` Arnd Bergmann
2012-05-05 19:50 ` Arnd Bergmann
2012-05-06 14:23 ` Magnus Damm
2012-05-06 14:23 ` Magnus Damm
2012-05-06 14:23 ` Magnus Damm
2012-05-08 20:12 ` Arnd Bergmann
2012-05-08 20:12 ` Arnd Bergmann
2012-05-08 20:12 ` Arnd Bergmann
2012-05-09 7:57 ` Geert Uytterhoeven
2012-05-09 7:57 ` Geert Uytterhoeven
2012-05-09 7:57 ` Geert Uytterhoeven
2012-05-09 8:12 ` Magnus Damm
2012-05-09 8:12 ` Magnus Damm
2012-05-09 8:12 ` Magnus Damm
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=201205041307.46080.arnd@arndb.de \
--to=arnd@arndb.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 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.