From: plagnioj@jcrosoft.com (Jean-Christophe PLAGNIOL-VILLARD)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 43/74] ST SPEAr : EMI (Extrenal Memory Interface) controller driver
Date: Tue, 7 Sep 2010 00:40:50 +0200 [thread overview]
Message-ID: <20100906224050.GA8153@game.jcrosoft.org> (raw)
In-Reply-To: <468bb871e1ce062fbde39f78600b23a896b57a72.1283161023.git.viresh.kumar@st.com>
On 16:09 Mon 30 Aug , Viresh KUMAR wrote:
> From: Vipin Kumar <vipin.kumar@st.com>
>
> 2 SPEAr platform SoCs(spear310 and spear320) support an External Memory
> Interface controller. This controller is used to interface with Parallel
> NOR Flash devices.
>
> This patch adds just the platform code needed for EMI (mainly EMI
> initialization). The driver being used is driver/mtd/maps/physmap.c
>
> Signed-off-by: Vipin Kumar <vipin.kumar@st.com>
> Signed-off-by: Viresh Kumar <viresh.kumar@st.com>
> ---
> arch/arm/mach-spear3xx/Makefile | 4 +
> arch/arm/mach-spear3xx/clock.c | 12 +++
> arch/arm/mach-spear3xx/emi.c | 86 ++++++++++++++++++++++++
> arch/arm/mach-spear3xx/include/mach/emi.h | 79 ++++++++++++++++++++++
> arch/arm/mach-spear3xx/include/mach/generic.h | 2 +
> arch/arm/mach-spear3xx/include/mach/spear310.h | 9 +++
> arch/arm/mach-spear3xx/include/mach/spear320.h | 6 ++
> arch/arm/mach-spear3xx/spear310.c | 20 ++++++
> arch/arm/mach-spear3xx/spear310_evb.c | 18 +++++
> arch/arm/mach-spear3xx/spear320.c | 20 ++++++
> arch/arm/mach-spear3xx/spear320_evb.c | 17 +++++
> 11 files changed, 273 insertions(+), 0 deletions(-)
> create mode 100644 arch/arm/mach-spear3xx/emi.c
> create mode 100644 arch/arm/mach-spear3xx/include/mach/emi.h
>
> diff --git a/arch/arm/mach-spear3xx/Makefile b/arch/arm/mach-spear3xx/Makefile
> index b248624..d38ae47 100644
> --- a/arch/arm/mach-spear3xx/Makefile
> +++ b/arch/arm/mach-spear3xx/Makefile
> @@ -24,3 +24,7 @@ obj-$(CONFIG_MACH_SPEAR320) += spear320.o
>
> # spear320 boards files
> obj-$(CONFIG_BOARD_SPEAR320_EVB) += spear320_evb.o
> +
> +# specific files
> +obj-$(CONFIG_MACH_SPEAR310) += emi.o
> +obj-$(CONFIG_MACH_SPEAR320) += emi.o
> diff --git a/arch/arm/mach-spear3xx/clock.c b/arch/arm/mach-spear3xx/clock.c
> index 41a2b5e..4f049fe 100644
> --- a/arch/arm/mach-spear3xx/clock.c
> +++ b/arch/arm/mach-spear3xx/clock.c
> @@ -552,6 +552,15 @@ static struct clk adc_clk = {
> .recalc = &follow_parent,
> };
>
> +#if defined(CONFIG_MACH_SPEAR310) || defined(CONFIG_MACH_SPEAR320)
can you create a macro for this?
or even better detect it
> +/* emi clock */
> +static struct clk emi_clk = {
> + .flags = ALWAYS_ENABLED,
> + .pclk = &ahb_clk,
> + .recalc = &follow_parent,
> +};
> +#endif
> +
> /* ssp clock */
> static struct clk ssp0_clk = {
> .pclk = &apb_clk,
> @@ -744,6 +753,9 @@ static struct clk_lookup spear_clk_lookups[] = {
> { .dev_id = "adc", .clk = &adc_clk},
> { .dev_id = "ssp-pl022.0", .clk = &ssp0_clk},
> { .dev_id = "gpio", .clk = &gpio_clk},
> +#if defined(CONFIG_MACH_SPEAR310) || defined(CONFIG_MACH_SPEAR320)
> + { .dev_id = "physmap-flash", .clk = &emi_clk},
> +#endif
> #if defined(CONFIG_MACH_SPEAR300) || defined(CONFIG_MACH_SPEAR310) || \
> defined(CONFIG_MACH_SPEAR320)
> { .con_id = "fsmc", .clk = &fsmc_clk},
> diff --git a/arch/arm/mach-spear3xx/emi.c b/arch/arm/mach-spear3xx/emi.c
> new file mode 100644
> index 0000000..dd5cb8e
> --- /dev/null
> +++ b/arch/arm/mach-spear3xx/emi.c
> @@ -0,0 +1,86 @@
> +/*
> + * arch/arm/mach-spear3xx/emi.c
> + *
> + * EMI (External Memory Interface) file
> + *
> + * Copyright (C) 2010 ST Microelectronics
> + * Vipin Kumar<vipin.kumar@st.com>
> + *
> + * This file is licensed under the terms of the GNU General Public
> + * License version 2. This program is licensed "as is" without any
> + * warranty of any kind, whether express or implied.
> + */
> +
> +#include <linux/clk.h>
> +#include <linux/err.h>
> +#include <linux/init.h>
> +#include <linux/io.h>
> +#include <mach/emi.h>
> +
> +int __init emi_init(struct platform_device *pdev, unsigned long base,
> + u32 bank, u32 width)
> +{
how about request the memory region
and use platform device to register the bank ressource instead of define
it will make it more flexible
> + void __iomem *emi_reg_base;
> + struct clk *clk;
> + int ret;
> +
> + if (bank > (EMI_MAX_BANKS - 1))
> + return -EINVAL;
> +
> + emi_reg_base = ioremap(base, EMI_REG_SIZE);
> + if (!emi_reg_base)
> + return -ENOMEM;
> +
> + clk = clk_get(&pdev->dev, NULL);
> + if (IS_ERR(clk)) {
> + iounmap(emi_reg_base);
> + return PTR_ERR(clk);
> + }
> +
> + ret = clk_enable(clk);
> + if (ret) {
> + iounmap(emi_reg_base);
> + return ret;
> + }
> +
> + /* set the timing */
> + writel(0x10, emi_reg_base + (EMI_BANK_REG_SIZE * bank) + TAP_REG);
> + writel(0x05, emi_reg_base + (EMI_BANK_REG_SIZE * bank) + TSDP_REG);
> + writel(0x0a, emi_reg_base + (EMI_BANK_REG_SIZE * bank) + TDPW_REG);
> + writel(0x0a, emi_reg_base + (EMI_BANK_REG_SIZE * bank) + TDPR_REG);
> + writel(0x05, emi_reg_base + (EMI_BANK_REG_SIZE * bank) + TDCS_REG);
you always set the same timmings?
it's wired as the timings as supposed to be nor or nand specific
and you can you more than one nor or nand
so NACK
> +
> + switch (width) {
> + case EMI_FLASH_WIDTH8:
> + width = EMI_CNTL_WIDTH8;
> + break;
> +
> + case EMI_FLASH_WIDTH16:
> + width = EMI_CNTL_WIDTH16;
> + break;
> +
> + case EMI_FLASH_WIDTH32:
> + width = EMI_CNTL_WIDTH32;
> + break;
> + default:
> + width = EMI_CNTL_WIDTH8;
> + break;
> + }
> + /* set the data width */
> + writel(width | EMI_CNTL_ENBBYTERW,
> + emi_reg_base + (EMI_BANK_REG_SIZE * bank) + CTRL_REG);
> +
> + /* disable all the acks */
> + writel(0x3f << bank, emi_reg_base + ACK_REG);
> +
> + iounmap(emi_reg_base);
> +
> + return 0;
> +}
> +
> +void __init emi_init_board_info(struct platform_device *pdev,
> + struct mtd_partition *partitions, unsigned int nr_partitions,
> + unsigned int width)
> +{
> + emi_init_plat_data(pdev, partitions, nr_partitions, width);
> +}
???
> diff --git a/arch/arm/mach-spear3xx/include/mach/emi.h b/arch/arm/mach-spear3xx/include/mach/emi.h
> new file mode 100644
> index 0000000..f3cbfbc
> --- /dev/null
> +++ b/arch/arm/mach-spear3xx/include/mach/emi.h
> @@ -0,0 +1,79 @@
> +/*
> + * arch/arm/mach-spear3xx/include/mach/emi.h
> + *
> + * EMI macros for SPEAr platform
> + *
> + * Copyright (C) 2010 ST Microelectronics
> + * Vipin Kumar <vipin.kumar@st.com>
> + *
> + * This file is licensed under the terms of the GNU General Public
> + * License version 2. This program is licensed "as is" without any
> + * warranty of any kind, whether express or implied.
> + */
> +
> +#ifndef __MACH_EMI_H
> +#define __MACH_EMI_H
> +
> +#include <linux/device.h>
> +#include <linux/platform_device.h>
> +#include <linux/mtd/physmap.h>
> +
> +#define EMI_FLASH_WIDTH8 1
> +#define EMI_FLASH_WIDTH16 2
> +#define EMI_FLASH_WIDTH32 4
> +
> +#define EMI_REG_SIZE 0x100
> +#define EMI_BANK_REG_SIZE 0x18
> +
> +#define TAP_REG (0x0)
> +#define TSDP_REG (0x4)
> +#define TDPW_REG (0x8)
> +#define TDPR_REG (0xC)
> +#define TDCS_REG (0x10)
> +#define CTRL_REG (0x14)
> +
> +#if defined(CONFIG_MACH_SPEAR310)
> +#define TIMEOUT_REG (0x90)
> +#define ACK_REG (0x94)
> +#define IRQ_REG (0x98)
> +
> +#define EMI_MAX_BANKS 6
> +
> +#elif defined(CONFIG_MACH_SPEAR320)
> +#define TIMEOUT_REG (0x60)
> +#define ACK_REG (0x64)
> +#define IRQ_REG (0x68)
> +
> +#define EMI_MAX_BANKS 4
> +
> +#endif
> +
> +/* Control register definitions */
> +#define EMI_CNTL_WIDTH8 (0 << 0)
> +#define EMI_CNTL_WIDTH16 (1 << 0)
> +#define EMI_CNTL_WIDTH32 (2 << 0)
> +#define EMI_CNTL_ENBBYTEW (1 << 2)
> +#define EMI_CNTL_ENBBYTER (1 << 3)
> +#define EMI_CNTL_ENBBYTERW (EMI_CNTL_ENBBYTER | EMI_CNTL_ENBBYTEW)
> +
> +static inline void emi_init_plat_data(struct platform_device *pdev,
> + struct mtd_partition *partitions, unsigned int nr_partitions,
> + unsigned int width)
> +{
> + struct physmap_flash_data *emi_plat_data;
> + emi_plat_data = dev_get_platdata(&pdev->dev);
> +
> + if (partitions) {
> + emi_plat_data->parts = partitions;
> + emi_plat_data->nr_parts = nr_partitions;
> + }
> +
> + emi_plat_data->width = width;
> +}
> +
> +extern int __init emi_init(struct platform_device *pdev, unsigned long base,
> + u32 bank, u32 width);
> +extern void __init emi_init_board_info(struct platform_device *pdev,
> + struct mtd_partition *partitions, unsigned int nr_partitions,
> + unsigned int width);
> +#endif
> diff --git a/arch/arm/mach-spear3xx/include/mach/generic.h b/arch/arm/mach-spear3xx/include/mach/generic.h
> index 4d04dbe..6c6eced 100644
> --- a/arch/arm/mach-spear3xx/include/mach/generic.h
> +++ b/arch/arm/mach-spear3xx/include/mach/generic.h
> @@ -167,6 +167,7 @@ extern struct amba_device uart2_device;
> extern struct amba_device uart3_device;
> extern struct amba_device uart4_device;
> extern struct amba_device uart5_device;
> +extern struct platform_device emi_nor_device;
> extern struct platform_device plgpio_device;
> extern struct platform_device nand_device;
>
> @@ -192,6 +193,7 @@ extern struct amba_device uart1_device;
> extern struct amba_device uart2_device;
> extern struct platform_device can0_device;
> extern struct platform_device can1_device;
> +extern struct platform_device emi_nor_device;
> extern struct platform_device i2c1_device;
> extern struct platform_device nand_device;
> extern struct platform_device plgpio_device;
> diff --git a/arch/arm/mach-spear3xx/include/mach/spear310.h b/arch/arm/mach-spear3xx/include/mach/spear310.h
> index 1e85347..37556b6 100644
> --- a/arch/arm/mach-spear3xx/include/mach/spear310.h
> +++ b/arch/arm/mach-spear3xx/include/mach/spear310.h
> @@ -18,6 +18,15 @@
>
> #define SPEAR310_NAND_BASE UL(0x40000000)
> #define SPEAR310_FSMC_BASE UL(0x44000000)
> +#define SPEAR310_EMI_REG_BASE UL(0x4F000000)
> +#define SPEAR310_EMI_MEM_0_BASE UL(0x50000000)
> +#define SPEAR310_EMI_MEM_1_BASE UL(0x60000000)
> +#define SPEAR310_EMI_MEM_2_BASE UL(0x70000000)
> +#define SPEAR310_EMI_MEM_3_BASE UL(0x80000000)
> +#define SPEAR310_EMI_MEM_4_BASE UL(0x90000000)
> +#define SPEAR310_EMI_MEM_5_BASE UL(0xA0000000)
> +#define SPEAR310_EMI_MEM_SIZE UL(0x10000000)
> +
> #define SPEAR310_UART1_BASE UL(0xB2000000)
> #define SPEAR310_UART2_BASE UL(0xB2080000)
> #define SPEAR310_UART3_BASE UL(0xB2100000)
> diff --git a/arch/arm/mach-spear3xx/include/mach/spear320.h b/arch/arm/mach-spear3xx/include/mach/spear320.h
> index 940f0d8..4f60073 100644
> --- a/arch/arm/mach-spear3xx/include/mach/spear320.h
> +++ b/arch/arm/mach-spear3xx/include/mach/spear320.h
> @@ -17,6 +17,12 @@
> #define __MACH_SPEAR320_H
>
> #define SPEAR320_EMI_CTRL_BASE UL(0x40000000)
> +#define SPEAR320_EMI_MEM_0_BASE UL(0x44000000)
> +#define SPEAR320_EMI_MEM_1_BASE UL(0x45000000)
> +#define SPEAR320_EMI_MEM_2_BASE UL(0x46000000)
> +#define SPEAR320_EMI_MEM_3_BASE UL(0x47000000)
> +#define SPEAR320_EMI_MEM_SIZE UL(0x01000000)
> +
> #define SPEAR320_FSMC_BASE UL(0x4C000000)
> #define SPEAR320_NAND_BASE UL(0x50000000)
> #define SPEAR320_I2S_BASE UL(0x60000000)
> diff --git a/arch/arm/mach-spear3xx/spear310.c b/arch/arm/mach-spear3xx/spear310.c
> index 29e3c2c..32c492d 100644
> --- a/arch/arm/mach-spear3xx/spear310.c
> +++ b/arch/arm/mach-spear3xx/spear310.c
> @@ -11,6 +11,7 @@
> * warranty of any kind, whether express or implied.
> */
>
> +#include <linux/mtd/physmap.h>
> #include <linux/ptrace.h>
> #include <asm/irq.h>
> #include <mach/generic.h>
> @@ -268,6 +269,25 @@ int spear300_o2p(int offset)
> return offset + 2;
> }
>
> +/* emi nor flash device registeration */
> +static struct physmap_flash_data emi_norflash_data;
> +
> +static struct resource emi_nor_resources[] = {
> + {
> + .start = SPEAR310_EMI_MEM_0_BASE,
> + .end = SPEAR310_EMI_MEM_0_BASE + SPEAR310_EMI_MEM_SIZE - 1,
> + .flags = IORESOURCE_MEM,
> + },
> +};
it's board specfic not mach
NACK
Best Regards,
J.
next prev parent reply other threads:[~2010-09-06 22:40 UTC|newest]
Thread overview: 245+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-08-30 10:38 [PATCH 00/74] Updating SPEAr Support Viresh KUMAR
2010-08-30 10:38 ` [PATCH 01/74] ST SPEAr: Padmux code Updated Viresh KUMAR
2010-09-06 22:49 ` Jean-Christophe PLAGNIOL-VILLARD
2010-09-07 3:51 ` viresh kumar
2010-09-07 4:07 ` Jean-Christophe PLAGNIOL-VILLARD
2010-09-07 4:10 ` viresh kumar
2010-08-30 10:38 ` [PATCH 02/74] ST SPEAr: Making clock functions more generic Viresh KUMAR
2010-08-30 10:38 ` [PATCH 03/74] ST SPEAr: Formalized timer support Viresh KUMAR
2010-09-06 22:55 ` Jean-Christophe PLAGNIOL-VILLARD
2010-09-13 3:22 ` Shiraz Hashim
2010-09-13 3:37 ` Jean-Christophe PLAGNIOL-VILLARD
2010-09-13 4:04 ` Shiraz Hashim
2010-09-13 4:37 ` Jean-Christophe PLAGNIOL-VILLARD
2010-09-13 7:49 ` Russell King - ARM Linux
2010-08-30 10:38 ` [PATCH 04/74] ST SPEAr13XX: Adding machine specific header files Viresh KUMAR
2010-09-02 8:56 ` Russell King - ARM Linux
2010-09-03 6:57 ` Shiraz Hashim
2010-08-30 10:38 ` [PATCH 05/74] ST SPEAr13XX: Adding machine specific src files Viresh KUMAR
2010-09-02 9:04 ` Russell King - ARM Linux
2010-09-03 6:38 ` Shiraz Hashim
2010-08-30 10:38 ` [PATCH 06/74] ST SPEAr: Adding support for SPEAr13xx SoC in spear generic plat/ Viresh KUMAR
2010-08-30 10:38 ` [PATCH 07/74] ST SPEAr13XX: Added compilation support in arch/arm/ Viresh KUMAR
2010-09-02 16:27 ` Jean-Christophe PLAGNIOL-VILLARD
2010-09-06 11:52 ` viresh kumar
2010-09-07 11:35 ` viresh kumar
2010-09-07 20:56 ` Russell King - ARM Linux
2010-08-30 10:38 ` [PATCH 08/74] ST SPEAr1300: Adding default config file Viresh KUMAR
2010-09-02 8:51 ` Russell King - ARM Linux
2010-09-03 1:45 ` Nicolas Pitre
2010-09-03 7:32 ` Russell King - ARM Linux
2010-09-03 7:44 ` viresh kumar
2010-08-30 10:38 ` [PATCH 09/74] ST SPEAr: Adding information in Documentation/ and MAINTAINERS Viresh KUMAR
2010-08-30 10:38 ` [PATCH 10/74] ST SPEAr: Adding support for CLCD on SPEAr3xx/6xx Viresh KUMAR
2010-09-02 9:08 ` Russell King - ARM Linux
2010-09-06 9:43 ` viresh kumar
2010-08-30 10:38 ` [PATCH 11/74] ST SPEAr: Adding support for divisor per parent clock Viresh KUMAR
2010-08-30 10:38 ` [PATCH 12/74] ST SPEAr: Correcting SOC Config base address for spear320 Viresh KUMAR
2010-09-06 22:58 ` Jean-Christophe PLAGNIOL-VILLARD
2010-09-07 8:36 ` viresh kumar
2010-08-30 10:38 ` [PATCH 13/74] ST SPEAr: Update clock framework and definitions Viresh KUMAR
2010-09-06 23:09 ` Jean-Christophe PLAGNIOL-VILLARD
2010-09-07 3:58 ` viresh kumar
2010-09-07 4:06 ` Jean-Christophe PLAGNIOL-VILLARD
2010-09-07 9:01 ` viresh kumar
2010-09-07 9:09 ` Russell King - ARM Linux
2010-09-07 9:16 ` viresh kumar
2010-08-30 10:38 ` [PATCH 14/74] ST SPEAr: Adding PLGPIO driver for spear platform Viresh KUMAR
2010-09-02 9:13 ` Russell King - ARM Linux
2010-09-03 3:44 ` viresh kumar
2010-08-30 10:38 ` [PATCH 16/74] ST SPEAr: adding support for synopsis i2c designware Viresh KUMAR
2010-09-06 23:12 ` Jean-Christophe PLAGNIOL-VILLARD
2010-09-07 4:02 ` viresh kumar
2010-09-07 4:12 ` Jean-Christophe PLAGNIOL-VILLARD
2010-09-07 9:16 ` viresh kumar
2010-09-07 9:44 ` Jean-Christophe PLAGNIOL-VILLARD
2010-09-07 10:17 ` viresh kumar
2010-08-30 10:38 ` [PATCH 18/74] ST SPEAr: enhanced spear clock framework Viresh KUMAR
2010-08-30 10:38 ` [PATCH 19/74] ST SPEAr: Adding Debugfs support on " Viresh KUMAR
2010-08-30 10:38 ` [PATCH 20/74] Clock Framework: Adding ENABLED_ON_INIT feature in clk Viresh KUMAR
2010-08-30 10:38 ` [PATCH 22/74] ST SPEAr: Added ARM PL061 GPIO Support on SPEAr13xx and modified resource size Viresh KUMAR
2010-08-30 10:38 ` [PATCH 23/74] ST SPEAr: Adding support for ST's PWM IP Viresh KUMAR
2010-08-30 10:38 ` [PATCH 25/74] ST SPEAr: Adding support for serial nor flash in all spear platforms Viresh KUMAR
2010-08-30 10:38 ` [PATCH 26/74] ST SPEAr: Adding Watchdog support Viresh KUMAR
2010-08-30 10:38 ` [PATCH 30/74] ST SPEAr: Added PCIE host controller base driver support Viresh KUMAR
2010-08-30 10:38 ` [PATCH 31/74] ST SPEAr: Adding support for SSP PL022 Viresh KUMAR
2010-09-02 9:57 ` Russell King - ARM Linux
2010-09-03 3:50 ` viresh kumar
2010-09-02 19:18 ` Linus Walleij
2010-09-03 3:58 ` viresh kumar
2010-08-30 10:38 ` [PATCH 32/74] ST SPEAr: Adding clk_set_rate support Viresh KUMAR
2010-09-02 9:21 ` Russell King - ARM Linux
2010-09-06 10:03 ` viresh kumar
2010-08-30 10:38 ` [PATCH 33/74] ST SPEAr: Adding support for SDHCI (SDIO) Viresh KUMAR
2010-08-30 10:38 ` [PATCH 34/74] ST SPEAr: Changing resource size of amba devices to SZ_4K Viresh KUMAR
2010-08-30 10:38 ` [PATCH 35/74] ST SPEAr: Enabling clocks before amba device registeration Viresh KUMAR
2010-09-02 10:02 ` Russell King - ARM Linux
2010-09-06 11:26 ` viresh kumar
2010-08-30 10:39 ` [PATCH 36/74] ST SPEAr: Replacing SIZE macro's with actual required size Viresh KUMAR
2010-08-30 10:39 ` [PATCH 37/74] SPEAr: removing size based macros except those necessary Viresh KUMAR
2010-08-30 10:39 ` [PATCH 38/74] ST SPEAr3xx: Rearranging declarations in clock.c file Viresh KUMAR
2010-09-02 10:04 ` Russell King - ARM Linux
2010-09-03 3:52 ` viresh kumar
2010-08-30 10:39 ` [PATCH 39/74] ST SPEAr: Adding miscellaneous devices and clocks Viresh KUMAR
2010-08-30 10:39 ` [PATCH 40/74] ST SPEAr 13xx : Adding support for SPEAr1310 Viresh KUMAR
2010-09-02 10:07 ` Russell King - ARM Linux
2010-09-03 3:53 ` viresh kumar
2010-08-30 10:39 ` [PATCH 41/74] ST SPEAr : Adding CAN platform support for SPEAr320 and SPEAr1310 Viresh KUMAR
2010-08-30 10:39 ` [PATCH 42/74] ST SPEAr: Adding support for DDR in clock framework Viresh KUMAR
2010-08-30 10:39 ` [PATCH 43/74] ST SPEAr : EMI (Extrenal Memory Interface) controller driver Viresh KUMAR
2010-09-06 22:40 ` Jean-Christophe PLAGNIOL-VILLARD [this message]
2010-09-07 10:51 ` viresh kumar
2010-09-07 11:38 ` Jean-Christophe PLAGNIOL-VILLARD
2010-09-07 11:54 ` viresh kumar
2010-09-07 13:32 ` Jean-Christophe PLAGNIOL-VILLARD
2010-09-10 8:11 ` Vipin Kumar
2010-09-10 8:56 ` Jean-Christophe PLAGNIOL-VILLARD
2010-09-10 9:06 ` Vipin Kumar
2010-09-10 9:21 ` Jean-Christophe PLAGNIOL-VILLARD
2010-10-01 5:42 ` Vipin Kumar
2010-08-30 10:39 ` [PATCH 44/74] ST SPEAr : FSMC (Flexible Static Memory Controller) NOR interface driver Viresh KUMAR
2010-09-01 22:43 ` Linus Walleij
2010-08-30 10:39 ` [PATCH 45/74] SPEAr : SEV Send event to secondary CPUs Viresh KUMAR
2010-09-02 10:22 ` Russell King - ARM Linux
2010-09-02 10:40 ` Will Deacon
2010-09-02 11:07 ` Shilimkar, Santosh
2010-09-02 15:59 ` Russell King - ARM Linux
2010-09-02 13:08 ` Russell King - ARM Linux
2010-09-06 7:44 ` Shiraz Hashim
2010-08-30 10:39 ` [PATCH 46/74] SPEAr Clock Framework: Adding support for PLL frequency change Viresh KUMAR
2010-08-30 10:39 ` [PATCH 47/74] SPEAr Power Management: Added the support for Standby mode Viresh KUMAR
2010-08-30 10:39 ` [PATCH 48/74] GIC: Added dummy handlers for Power Management Suspend Resume Viresh KUMAR
2010-09-02 10:23 ` Russell King - ARM Linux
2010-09-03 6:24 ` deepaksi
2010-09-03 7:34 ` Russell King - ARM Linux
2010-09-06 11:55 ` deepaksi
2010-09-08 15:12 ` Russell King - ARM Linux
2010-09-09 4:17 ` deepaksi
2010-09-20 13:44 ` deepaksi
2010-09-20 13:48 ` Russell King - ARM Linux
2010-09-20 14:56 ` Rob Herring
2010-09-20 15:07 ` Russell King - ARM Linux
2010-09-20 16:55 ` Rob Herring
2010-09-20 18:07 ` Russell King - ARM Linux
2010-09-30 5:33 ` viresh kumar
2010-08-30 10:39 ` [PATCH 49/74] SPEAr CPU freq: Adding support for CPU Freq framework Viresh KUMAR
2010-09-02 10:24 ` Russell King - ARM Linux
2010-09-03 6:20 ` deepaksi
2010-08-30 10:39 ` [PATCH 51/74] ST SPEAr1310: Adding fsmc nor support Viresh KUMAR
2010-08-30 10:39 ` [PATCH 52/74] ST SPEAr13xx: Adding CPU hotplug support added for SMP platforms Viresh KUMAR
2010-09-03 6:00 ` Sundar
2010-09-30 9:37 ` Shiraz Hashim
2010-08-30 10:39 ` [PATCH 53/74] ST SPEAr13xx: add l2 cache support Viresh KUMAR
2010-08-30 10:39 ` [PATCH 54/74] ST SPEAr: SDHCI- selecting SD_MMC from misc and fixing sdhci_synth rate to 48 MHz Viresh KUMAR
2010-08-30 10:39 ` [PATCH 55/74] ST SPEAr13xx: Modified static mappings Viresh KUMAR
2010-08-30 10:39 ` [PATCH 56/74] SPEAr13xx: Adding and Updating Clock definitions Viresh KUMAR
2010-08-30 10:39 ` [PATCH 57/74] SPEAr : Pad multiplexing handling modified Viresh KUMAR
2010-08-30 10:39 ` [PATCH 58/74] SPEAr13xx : Fixed part devices in SPEAr13xx addded to the generic implementation Viresh KUMAR
2010-08-30 10:39 ` [PATCH 59/74] SPEAr : Adding SPEAr1310 pad multiplexing devices Viresh KUMAR
2010-08-30 10:39 ` [PATCH 60/74] ST SPEAr3xx: Passing pmx devices address from machine *.c files Viresh KUMAR
2010-08-30 10:39 ` [PATCH 61/74] SPEAr3xx: Make local structres static Viresh KUMAR
2010-08-30 10:39 ` [PATCH 62/74] SPEAR3xx: Rename register/irq defines to remove naming conflicts Viresh KUMAR
2010-08-30 10:39 ` [PATCH 63/74] SPEAr3xx: Rework pmx_dev code to remove conflicts Viresh KUMAR
2010-08-30 10:39 ` [PATCH 64/74] SPEAr3xx: Rework KConfig to allow all boards to be compiled in Viresh KUMAR
2010-08-30 10:39 ` [PATCH 65/74] SPEAr3xx: Replace defconfigs with single unfied defconfig Viresh KUMAR
2010-08-30 10:39 ` [PATCH 66/74] ST SPEAr: Appending spear3** with global structures Viresh KUMAR
2010-08-30 10:39 ` [PATCH 67/74] ST SPEAr3xx: Updating plgpio and emi source to make it compliant with single image strategy Viresh KUMAR
2010-08-30 10:39 ` [PATCH 68/74] SPEAr6xx: Rework Kconfig for single image solution Viresh KUMAR
2010-08-30 10:39 ` [PATCH 69/74] ST SPEAR6xx: renaming spear600_defconfig as spear6xx_defconfig Viresh KUMAR
2010-08-30 10:39 ` [PATCH 70/74] SPEAr13XX: Update register/macros/devices/routine names and pmx dev registration to implement single image for multiple boards Viresh KUMAR
2010-08-30 10:39 ` [PATCH 71/74] SPEAr13xx: Rework KConfig to allow all boards to be compiled in Viresh KUMAR
2010-08-30 10:39 ` [PATCH 72/74] SPEAr13xx: Replace defconfigs with single unfied defconfig Viresh KUMAR
2010-09-02 15:40 ` Russell King - ARM Linux
2010-09-03 3:56 ` viresh kumar
2010-09-07 9:18 ` viresh kumar
2010-08-30 10:39 ` [PATCH 73/74] ST SPEAr: Updating defconfigs Viresh KUMAR
2010-08-30 10:39 ` [PATCH 74/74] ST SPEAr: Enabling devices in various evb.c files Viresh KUMAR
2010-08-30 10:41 ` [PATCH 15/74] ST SPEAr: adding support for rtc Viresh KUMAR
2010-09-01 1:22 ` [rtc-linux] " Wan ZongShun
2010-09-01 3:44 ` viresh kumar
2010-09-06 19:09 ` Alessandro Zummo
2010-09-07 3:30 ` rajeev
2010-09-07 10:13 ` viresh kumar
2010-09-06 22:45 ` Jean-Christophe PLAGNIOL-VILLARD
2010-09-07 8:35 ` viresh kumar
2010-08-30 10:42 ` [PATCH 17/74] ST SPEAr: Adding USB Host support Viresh KUMAR
2010-08-30 14:10 ` Alan Stern
2010-09-01 3:55 ` viresh kumar
2010-08-30 10:43 ` [PATCH 21/74] ST SPEAr : Added keyboard support Viresh KUMAR
2010-08-30 10:43 ` Viresh KUMAR
2010-08-30 16:48 ` Dmitry Torokhov
2010-08-30 16:48 ` Dmitry Torokhov
2010-09-01 5:23 ` rajeev
2010-09-01 5:23 ` rajeev
2010-09-01 5:41 ` rajeev
2010-09-01 5:41 ` rajeev
2010-09-01 6:31 ` Dmitry Torokhov
2010-09-01 6:31 ` Dmitry Torokhov
2010-09-01 7:01 ` viresh kumar
2010-09-01 7:01 ` viresh kumar
2010-08-30 10:43 ` [PATCH 24/74] ST SPEAr: Add smi driver for serial NOR flash Viresh KUMAR
2010-08-30 10:43 ` Viresh KUMAR
2010-08-30 10:43 ` [PATCH 27/74] ST SPEAr : NAND interface driver for spear platforms Viresh KUMAR
2010-08-30 10:43 ` Viresh KUMAR
2010-09-01 22:36 ` Linus Walleij
2010-09-01 22:36 ` Linus Walleij
2010-09-02 8:09 ` Armando Visconti
2010-09-02 8:09 ` Armando Visconti
2010-09-02 8:52 ` Armando Visconti
2010-09-02 8:52 ` Armando Visconti
2010-09-02 11:15 ` Linus Walleij
2010-09-02 11:15 ` Linus Walleij
2010-09-02 12:33 ` Armando Visconti
2010-09-02 12:33 ` Armando Visconti
2010-09-03 11:23 ` Alessandro Rubini
2010-09-03 11:23 ` Alessandro Rubini
2010-09-03 17:26 ` Linus Walleij
2010-09-03 17:26 ` Linus Walleij
2010-09-06 7:25 ` Armando Visconti
2010-09-06 7:25 ` Armando Visconti
2010-09-10 4:21 ` viresh kumar
2010-09-10 4:21 ` viresh kumar
2010-09-10 8:38 ` Linus Walleij
2010-09-10 8:38 ` Linus Walleij
2010-09-03 7:11 ` Vipin Kumar
2010-09-03 7:11 ` Vipin Kumar
2010-09-03 11:22 ` Sebastian RASMUSSEN
2010-09-03 11:22 ` Sebastian RASMUSSEN
2010-08-30 10:43 ` [PATCH 28/74] Incrementing the ecc_pos array to contain 128 char Viresh KUMAR
2010-08-30 10:43 ` Viresh KUMAR
2010-08-30 12:14 ` Artem Bityutskiy
2010-08-30 12:14 ` Artem Bityutskiy
2010-08-31 6:34 ` Vipin Kumar
2010-08-31 6:34 ` Vipin Kumar
2010-08-31 23:36 ` Artem Bityutskiy
2010-08-31 23:36 ` Artem Bityutskiy
2010-09-01 4:13 ` Vipin Kumar
2010-09-01 4:13 ` Vipin Kumar
2010-09-01 10:45 ` Artem Bityutskiy
2010-09-01 10:45 ` Artem Bityutskiy
2010-09-01 11:04 ` Vipin Kumar
2010-09-01 11:04 ` Vipin Kumar
2010-09-01 21:23 ` Ryan Mallon
2010-09-01 21:23 ` Ryan Mallon
2010-09-01 21:54 ` Kevin Cernekee
2010-09-01 21:54 ` Kevin Cernekee
2010-09-01 22:21 ` Ryan Mallon
2010-09-01 22:21 ` Ryan Mallon
2010-09-01 22:53 ` Artem Bityutskiy
2010-09-01 22:53 ` Artem Bityutskiy
2010-09-01 23:37 ` Ryan Mallon
2010-09-01 23:37 ` Ryan Mallon
2010-09-01 23:43 ` Ryan Mallon
2010-09-01 23:43 ` Ryan Mallon
2010-09-02 6:33 ` Brian Norris
2010-09-02 6:33 ` Brian Norris
2010-09-02 9:49 ` Artem Bityutskiy
2010-09-02 9:49 ` Artem Bityutskiy
2010-09-01 23:23 ` Artem Bityutskiy
2010-09-01 23:23 ` Artem Bityutskiy
2010-08-30 10:43 ` [PATCH 29/74] Newly erased page read workaround Viresh KUMAR
2010-08-30 10:43 ` Viresh KUMAR
2010-08-30 10:44 ` [PATCH 50/74] ST SPEAr: PCIE gadget suppport Viresh KUMAR
2010-08-30 10:44 ` Viresh KUMAR
2010-09-21 11:32 ` [PATCH 00/74] Updating SPEAr Support Matthias Fuchs
2010-09-21 11:50 ` viresh kumar
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=20100906224050.GA8153@game.jcrosoft.org \
--to=plagnioj@jcrosoft.com \
--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.