Commit 61c542bf authored by Kukjin Kim's avatar Kukjin Kim

ARM: S3C24XX: To merge s3c24xx devs.c files to one devs.c

This patch moves regarding s3c24xx dev files to one devs.c
file in plat-samsung directory and this is required to merge
to plat-samsung.

Cc: Ben Dooks <ben-linux@fluff.org>
Signed-off-by: default avatarKukjin Kim <kgene.kim@samsung.com>
parent 6b6844dd
/* arch/arm/mach-s3c2410/include/mach/fb.h #include <plat/fb-s3c2410.h>
*
* Copyright (c) 2004 Arnaud Patard <arnaud.patard@rtp-net.org>
*
* Inspired by pxafb.h
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
#ifndef __ASM_ARM_FB_H
#define __ASM_ARM_FB_H
#include <mach/regs-lcd.h>
struct s3c2410fb_hw {
unsigned long lcdcon1;
unsigned long lcdcon2;
unsigned long lcdcon3;
unsigned long lcdcon4;
unsigned long lcdcon5;
};
/* LCD description */
struct s3c2410fb_display {
/* LCD type */
unsigned type;
/* Screen size */
unsigned short width;
unsigned short height;
/* Screen info */
unsigned short xres;
unsigned short yres;
unsigned short bpp;
unsigned pixclock; /* pixclock in picoseconds */
unsigned short left_margin; /* value in pixels (TFT) or HCLKs (STN) */
unsigned short right_margin; /* value in pixels (TFT) or HCLKs (STN) */
unsigned short hsync_len; /* value in pixels (TFT) or HCLKs (STN) */
unsigned short upper_margin; /* value in lines (TFT) or 0 (STN) */
unsigned short lower_margin; /* value in lines (TFT) or 0 (STN) */
unsigned short vsync_len; /* value in lines (TFT) or 0 (STN) */
/* lcd configuration registers */
unsigned long lcdcon5;
};
struct s3c2410fb_mach_info {
struct s3c2410fb_display *displays; /* attached diplays info */
unsigned num_displays; /* number of defined displays */
unsigned default_display;
/* GPIOs */
unsigned long gpcup;
unsigned long gpcup_mask;
unsigned long gpccon;
unsigned long gpccon_mask;
unsigned long gpdup;
unsigned long gpdup_mask;
unsigned long gpdcon;
unsigned long gpdcon_mask;
/* lpc3600 control register */
unsigned long lpcsel;
};
extern void __init s3c24xx_fb_set_platdata(struct s3c2410fb_mach_info *);
#endif /* __ASM_ARM_FB_H */
...@@ -49,6 +49,7 @@ ...@@ -49,6 +49,7 @@
#include <mach/regs-gpio.h> #include <mach/regs-gpio.h>
#include <mach/leds-gpio.h> #include <mach/leds-gpio.h>
#include <mach/regs-lcd.h>
#include <plat/regs-serial.h> #include <plat/regs-serial.h>
#include <mach/fb.h> #include <mach/fb.h>
#include <plat/nand.h> #include <plat/nand.h>
......
...@@ -43,6 +43,7 @@ ...@@ -43,6 +43,7 @@
#include <mach/regs-gpio.h> #include <mach/regs-gpio.h>
#include <mach/regs-gpioj.h> #include <mach/regs-gpioj.h>
#include <mach/regs-lcd.h>
#include <mach/h1940.h> #include <mach/h1940.h>
#include <mach/fb.h> #include <mach/fb.h>
......
...@@ -14,7 +14,7 @@ obj- := ...@@ -14,7 +14,7 @@ obj- :=
obj-y += cpu.o obj-y += cpu.o
obj-y += irq.o obj-y += irq.o
obj-y += devs.o obj-y += dev-uart.o
obj-y += clock.o obj-y += clock.o
obj-$(CONFIG_S3C24XX_DCLK) += clock-dclk.o obj-$(CONFIG_S3C24XX_DCLK) += clock-dclk.o
......
/* linux/arch/arm/plat-s3c24xx/dev-uart.c
*
* Copyright (c) 2004 Simtec Electronics
* Ben Dooks <ben@simtec.co.uk>
*
* Base S3C24XX UART resource and platform device definitions
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/interrupt.h>
#include <linux/list.h>
#include <linux/serial_core.h>
#include <linux/platform_device.h>
#include <asm/mach/arch.h>
#include <asm/mach/map.h>
#include <asm/mach/irq.h>
#include <mach/hardware.h>
#include <mach/map.h>
#include <plat/devs.h>
#include <plat/regs-serial.h>
/* Serial port registrations */
static struct resource s3c2410_uart0_resource[] = {
[0] = {
.start = S3C2410_PA_UART0,
.end = S3C2410_PA_UART0 + 0x3fff,
.flags = IORESOURCE_MEM,
},
[1] = {
.start = IRQ_S3CUART_RX0,
.end = IRQ_S3CUART_ERR0,
.flags = IORESOURCE_IRQ,
}
};
static struct resource s3c2410_uart1_resource[] = {
[0] = {
.start = S3C2410_PA_UART1,
.end = S3C2410_PA_UART1 + 0x3fff,
.flags = IORESOURCE_MEM,
},
[1] = {
.start = IRQ_S3CUART_RX1,
.end = IRQ_S3CUART_ERR1,
.flags = IORESOURCE_IRQ,
}
};
static struct resource s3c2410_uart2_resource[] = {
[0] = {
.start = S3C2410_PA_UART2,
.end = S3C2410_PA_UART2 + 0x3fff,
.flags = IORESOURCE_MEM,
},
[1] = {
.start = IRQ_S3CUART_RX2,
.end = IRQ_S3CUART_ERR2,
.flags = IORESOURCE_IRQ,
}
};
static struct resource s3c2410_uart3_resource[] = {
[0] = {
.start = S3C2443_PA_UART3,
.end = S3C2443_PA_UART3 + 0x3fff,
.flags = IORESOURCE_MEM,
},
[1] = {
.start = IRQ_S3CUART_RX3,
.end = IRQ_S3CUART_ERR3,
.flags = IORESOURCE_IRQ,
},
};
struct s3c24xx_uart_resources s3c2410_uart_resources[] __initdata = {
[0] = {
.resources = s3c2410_uart0_resource,
.nr_resources = ARRAY_SIZE(s3c2410_uart0_resource),
},
[1] = {
.resources = s3c2410_uart1_resource,
.nr_resources = ARRAY_SIZE(s3c2410_uart1_resource),
},
[2] = {
.resources = s3c2410_uart2_resource,
.nr_resources = ARRAY_SIZE(s3c2410_uart2_resource),
},
[3] = {
.resources = s3c2410_uart3_resource,
.nr_resources = ARRAY_SIZE(s3c2410_uart3_resource),
},
};
# arch/arm/plat-s3c64xx/Makefile # arch/arm/plat-samsung/Makefile
# #
# Copyright 2009 Simtec Electronics # Copyright 2009 Simtec Electronics
# #
...@@ -30,6 +30,7 @@ obj-$(CONFIG_S3C_ADC) += adc.o ...@@ -30,6 +30,7 @@ obj-$(CONFIG_S3C_ADC) += adc.o
obj-y += platformdata.o obj-y += platformdata.o
obj-y += devs.o
obj-$(CONFIG_S3C_DEV_HSMMC) += dev-hsmmc.o obj-$(CONFIG_S3C_DEV_HSMMC) += dev-hsmmc.o
obj-$(CONFIG_S3C_DEV_HSMMC1) += dev-hsmmc1.o obj-$(CONFIG_S3C_DEV_HSMMC1) += dev-hsmmc1.o
obj-$(CONFIG_S3C_DEV_HSMMC2) += dev-hsmmc2.o obj-$(CONFIG_S3C_DEV_HSMMC2) += dev-hsmmc2.o
......
/* linux/arch/arm/plat-s3c24xx/devs.c /* linux/arch/arm/plat-samsung/devs.c
* *
* Copyright (c) 2004 Simtec Electronics * Copyright (c) 2011 Samsung Electronics Co., Ltd.
* Ben Dooks <ben@simtec.co.uk> * http://www.samsung.com
* *
* Base S3C24XX platform device definitions * Base SAMSUNG platform device definitions
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as * it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation. * published by the Free Software Foundation.
*
*/ */
#include <linux/kernel.h> #include <linux/kernel.h>
...@@ -24,505 +23,409 @@ ...@@ -24,505 +23,409 @@
#include <linux/string.h> #include <linux/string.h>
#include <linux/dma-mapping.h> #include <linux/dma-mapping.h>
#include <asm/irq.h>
#include <asm/mach/arch.h> #include <asm/mach/arch.h>
#include <asm/mach/map.h> #include <asm/mach/map.h>
#include <asm/mach/irq.h> #include <asm/mach/irq.h>
#include <mach/fb.h>
#include <mach/hardware.h> #include <mach/hardware.h>
#include <mach/dma.h> #include <mach/dma.h>
#include <mach/irqs.h> #include <mach/irqs.h>
#include <asm/irq.h> #include <mach/map.h>
#include <plat/regs-serial.h>
#include <plat/udc.h>
#include <plat/mci.h>
#include <plat/devs.h>
#include <plat/cpu.h> #include <plat/cpu.h>
#include <plat/regs-spi.h> #include <plat/devs.h>
#include <plat/fb.h>
#include <plat/fb-s3c2410.h>
#include <plat/mci.h>
#include <plat/ts.h> #include <plat/ts.h>
#include <plat/udc.h>
#include <plat/regs-serial.h>
#include <plat/regs-spi.h>
/* Serial port registrations */ static u64 samsung_device_dma_mask = DMA_BIT_MASK(32);
static struct resource s3c2410_uart0_resource[] = {
[0] = {
.start = S3C2410_PA_UART0,
.end = S3C2410_PA_UART0 + 0x3fff,
.flags = IORESOURCE_MEM,
},
[1] = {
.start = IRQ_S3CUART_RX0,
.end = IRQ_S3CUART_ERR0,
.flags = IORESOURCE_IRQ,
}
};
static struct resource s3c2410_uart1_resource[] = {
[0] = {
.start = S3C2410_PA_UART1,
.end = S3C2410_PA_UART1 + 0x3fff,
.flags = IORESOURCE_MEM,
},
[1] = {
.start = IRQ_S3CUART_RX1,
.end = IRQ_S3CUART_ERR1,
.flags = IORESOURCE_IRQ,
}
};
static struct resource s3c2410_uart2_resource[] = {
[0] = {
.start = S3C2410_PA_UART2,
.end = S3C2410_PA_UART2 + 0x3fff,
.flags = IORESOURCE_MEM,
},
[1] = {
.start = IRQ_S3CUART_RX2,
.end = IRQ_S3CUART_ERR2,
.flags = IORESOURCE_IRQ,
}
};
static struct resource s3c2410_uart3_resource[] = { /* AC97 */
[0] = { #ifdef CONFIG_CPU_S3C2440
.start = S3C2443_PA_UART3, static struct resource s3c_ac97_resource[] = {
.end = S3C2443_PA_UART3 + 0x3fff,
.flags = IORESOURCE_MEM,
},
[1] = {
.start = IRQ_S3CUART_RX3,
.end = IRQ_S3CUART_ERR3,
.flags = IORESOURCE_IRQ,
},
};
struct s3c24xx_uart_resources s3c2410_uart_resources[] __initdata = {
[0] = { [0] = {
.resources = s3c2410_uart0_resource, .start = S3C2440_PA_AC97,
.nr_resources = ARRAY_SIZE(s3c2410_uart0_resource), .end = S3C2440_PA_AC97 + S3C2440_SZ_AC97 - 1,
.flags = IORESOURCE_MEM,
}, },
[1] = { [1] = {
.resources = s3c2410_uart1_resource, .start = IRQ_S3C244x_AC97,
.nr_resources = ARRAY_SIZE(s3c2410_uart1_resource), .end = IRQ_S3C244x_AC97,
.flags = IORESOURCE_IRQ,
}, },
[2] = { [2] = {
.resources = s3c2410_uart2_resource, .name = "PCM out",
.nr_resources = ARRAY_SIZE(s3c2410_uart2_resource), .start = DMACH_PCM_OUT,
.end = DMACH_PCM_OUT,
.flags = IORESOURCE_DMA,
}, },
[3] = { [3] = {
.resources = s3c2410_uart3_resource, .name = "PCM in",
.nr_resources = ARRAY_SIZE(s3c2410_uart3_resource), .start = DMACH_PCM_IN,
.end = DMACH_PCM_IN,
.flags = IORESOURCE_DMA,
}, },
}; [4] = {
.name = "Mic in",
/* LCD Controller */ .start = DMACH_MIC_IN,
.end = DMACH_MIC_IN,
static struct resource s3c_lcd_resource[] = { .flags = IORESOURCE_DMA,
[0] = {
.start = S3C24XX_PA_LCD,
.end = S3C24XX_PA_LCD + S3C24XX_SZ_LCD - 1,
.flags = IORESOURCE_MEM,
}, },
[1] = {
.start = IRQ_LCD,
.end = IRQ_LCD,
.flags = IORESOURCE_IRQ,
}
}; };
static u64 s3c_device_lcd_dmamask = 0xffffffffUL; struct platform_device s3c_device_ac97 = {
.name = "samsung-ac97",
struct platform_device s3c_device_lcd = { .id = -1,
.name = "s3c2410-lcd", .num_resources = ARRAY_SIZE(s3c_ac97_resource),
.id = -1, .resource = s3c_ac97_resource,
.num_resources = ARRAY_SIZE(s3c_lcd_resource), .dev = {
.resource = s3c_lcd_resource, .dma_mask = &samsung_device_dma_mask,
.dev = { .coherent_dma_mask = DMA_BIT_MASK(32),
.dma_mask = &s3c_device_lcd_dmamask,
.coherent_dma_mask = 0xffffffffUL
} }
}; };
#endif /* CONFIG_CPU_S3C2440 */
EXPORT_SYMBOL(s3c_device_lcd); /* ADC */
void __init s3c24xx_fb_set_platdata(struct s3c2410fb_mach_info *pd)
{
struct s3c2410fb_mach_info *npd;
npd = s3c_set_platdata(pd, sizeof(*npd), &s3c_device_lcd);
if (npd) {
npd->displays = kmemdup(pd->displays,
sizeof(struct s3c2410fb_display) * npd->num_displays,
GFP_KERNEL);
if (!npd->displays)
printk(KERN_ERR "no memory for LCD display data\n");
} else {
printk(KERN_ERR "no memory for LCD platform data\n");
}
}
/* Touchscreen */
static struct resource s3c_ts_resource[] = { #ifdef CONFIG_PLAT_S3C24XX
static struct resource s3c_adc_resource[] = {
[0] = { [0] = {
.start = S3C24XX_PA_ADC, .start = S3C24XX_PA_ADC,
.end = S3C24XX_PA_ADC + S3C24XX_SZ_ADC - 1, .end = S3C24XX_PA_ADC + S3C24XX_SZ_ADC - 1,
.flags = IORESOURCE_MEM, .flags = IORESOURCE_MEM,
}, },
[1] = { [1] = {
.start = IRQ_TC, .start = IRQ_TC,
.end = IRQ_TC, .end = IRQ_TC,
.flags = IORESOURCE_IRQ, .flags = IORESOURCE_IRQ,
},
};
struct platform_device s3c_device_ts = {
.name = "s3c2410-ts",
.id = -1,
.dev.parent = &s3c_device_adc.dev,
.num_resources = ARRAY_SIZE(s3c_ts_resource),
.resource = s3c_ts_resource,
};
EXPORT_SYMBOL(s3c_device_ts);
void __init s3c24xx_ts_set_platdata(struct s3c2410_ts_mach_info *hard_s3c2410ts_info)
{
s3c_set_platdata(hard_s3c2410ts_info,
sizeof(struct s3c2410_ts_mach_info), &s3c_device_ts);
}
/* USB Device (Gadget)*/
static struct resource s3c_usbgadget_resource[] = {
[0] = {
.start = S3C24XX_PA_USBDEV,
.end = S3C24XX_PA_USBDEV + S3C24XX_SZ_USBDEV - 1,
.flags = IORESOURCE_MEM,
}, },
[1] = { [2] = {
.start = IRQ_USBD, .start = IRQ_ADC,
.end = IRQ_USBD, .end = IRQ_ADC,
.flags = IORESOURCE_IRQ, .flags = IORESOURCE_IRQ,
} }
}; };
struct platform_device s3c_device_usbgadget = { struct platform_device s3c_device_adc = {
.name = "s3c2410-usbgadget", .name = "s3c24xx-adc",
.id = -1, .id = -1,
.num_resources = ARRAY_SIZE(s3c_usbgadget_resource), .num_resources = ARRAY_SIZE(s3c_adc_resource),
.resource = s3c_usbgadget_resource, .resource = s3c_adc_resource,
}; };
#endif /* CONFIG_PLAT_S3C24XX */
EXPORT_SYMBOL(s3c_device_usbgadget); /* Camif Controller */
void __init s3c24xx_udc_set_platdata(struct s3c2410_udc_mach_info *pd)
{
s3c_set_platdata(pd, sizeof(*pd), &s3c_device_usbgadget);
}
/* USB High Speed 2.0 Device (Gadget) */ #ifdef CONFIG_CPU_S3C2440
static struct resource s3c_hsudc_resource[] = { static struct resource s3c_camif_resource[] = {
[0] = { [0] = {
.start = S3C2416_PA_HSUDC, .start = S3C2440_PA_CAMIF,
.end = S3C2416_PA_HSUDC + S3C2416_SZ_HSUDC - 1, .end = S3C2440_PA_CAMIF + S3C2440_SZ_CAMIF - 1,
.flags = IORESOURCE_MEM, .flags = IORESOURCE_MEM,
}, },
[1] = { [1] = {
.start = IRQ_USBD, .start = IRQ_CAM,
.end = IRQ_USBD, .end = IRQ_CAM,
.flags = IORESOURCE_IRQ, .flags = IORESOURCE_IRQ,
} }
}; };
static u64 s3c_hsudc_dmamask = DMA_BIT_MASK(32); struct platform_device s3c_device_camif = {
.name = "s3c2440-camif",
struct platform_device s3c_device_usb_hsudc = {
.name = "s3c-hsudc",
.id = -1, .id = -1,
.num_resources = ARRAY_SIZE(s3c_hsudc_resource), .num_resources = ARRAY_SIZE(s3c_camif_resource),
.resource = s3c_hsudc_resource, .resource = s3c_camif_resource,
.dev = { .dev = {
.dma_mask = &s3c_hsudc_dmamask, .dma_mask = &samsung_device_dma_mask,
.coherent_dma_mask = DMA_BIT_MASK(32), .coherent_dma_mask = DMA_BIT_MASK(32),
}, }
}; };
#endif /* CONFIG_CPU_S3C2440 */
void __init s3c24xx_hsudc_set_platdata(struct s3c24xx_hsudc_platdata *pd) /* I2S */
{
s3c_set_platdata(pd, sizeof(*pd), &s3c_device_usb_hsudc);
}
/* IIS */
#ifdef CONFIG_PLAT_S3C24XX
static struct resource s3c_iis_resource[] = { static struct resource s3c_iis_resource[] = {
[0] = { [0] = {
.start = S3C24XX_PA_IIS, .start = S3C24XX_PA_IIS,
.end = S3C24XX_PA_IIS + S3C24XX_SZ_IIS -1, .end = S3C24XX_PA_IIS + S3C24XX_SZ_IIS - 1,
.flags = IORESOURCE_MEM, .flags = IORESOURCE_MEM,
} }
}; };
static u64 s3c_device_iis_dmamask = 0xffffffffUL;
struct platform_device s3c_device_iis = { struct platform_device s3c_device_iis = {
.name = "s3c24xx-iis", .name = "s3c24xx-iis",
.id = -1, .id = -1,
.num_resources = ARRAY_SIZE(s3c_iis_resource), .num_resources = ARRAY_SIZE(s3c_iis_resource),
.resource = s3c_iis_resource, .resource = s3c_iis_resource,
.dev = { .dev = {
.dma_mask = &s3c_device_iis_dmamask, .dma_mask = &samsung_device_dma_mask,
.coherent_dma_mask = 0xffffffffUL .coherent_dma_mask = DMA_BIT_MASK(32),
} }
}; };
#endif /* CONFIG_PLAT_S3C24XX */
EXPORT_SYMBOL(s3c_device_iis); #ifdef CONFIG_CPU_S3C2440
struct platform_device s3c2412_device_iis = {
.name = "s3c2412-iis",
.id = -1,
.dev = {
.dma_mask = &samsung_device_dma_mask,
.coherent_dma_mask = DMA_BIT_MASK(32),
}
};
#endif /* CONFIG_CPU_S3C2440 */
/* RTC */ /* LCD Controller */
static struct resource s3c_rtc_resource[] = { #ifdef CONFIG_PLAT_S3C24XX
static struct resource s3c_lcd_resource[] = {
[0] = { [0] = {
.start = S3C24XX_PA_RTC, .start = S3C24XX_PA_LCD,
.end = S3C24XX_PA_RTC + 0xff, .end = S3C24XX_PA_LCD + S3C24XX_SZ_LCD - 1,
.flags = IORESOURCE_MEM, .flags = IORESOURCE_MEM,
}, },
[1] = { [1] = {
.start = IRQ_RTC, .start = IRQ_LCD,
.end = IRQ_RTC, .end = IRQ_LCD,
.flags = IORESOURCE_IRQ, .flags = IORESOURCE_IRQ,
},
[2] = {
.start = IRQ_TICK,
.end = IRQ_TICK,
.flags = IORESOURCE_IRQ
} }
}; };
struct platform_device s3c_device_rtc = { struct platform_device s3c_device_lcd = {
.name = "s3c2410-rtc", .name = "s3c2410-lcd",
.id = -1, .id = -1,
.num_resources = ARRAY_SIZE(s3c_rtc_resource), .num_resources = ARRAY_SIZE(s3c_lcd_resource),
.resource = s3c_rtc_resource, .resource = s3c_lcd_resource,
.dev = {
.dma_mask = &samsung_device_dma_mask,
.coherent_dma_mask = DMA_BIT_MASK(32),
}
}; };
EXPORT_SYMBOL(s3c_device_rtc); void __init s3c24xx_fb_set_platdata(struct s3c2410fb_mach_info *pd)
{
struct s3c2410fb_mach_info *npd;
/* ADC */ npd = s3c_set_platdata(pd, sizeof(*npd), &s3c_device_lcd);
if (npd) {
npd->displays = kmemdup(pd->displays,
sizeof(struct s3c2410fb_display) * npd->num_displays,
GFP_KERNEL);
if (!npd->displays)
printk(KERN_ERR "no memory for LCD display data\n");
} else {
printk(KERN_ERR "no memory for LCD platform data\n");
}
}
#endif /* CONFIG_PLAT_S3C24XX */
static struct resource s3c_adc_resource[] = { /* RTC */
#ifdef CONFIG_PLAT_S3C24XX
static struct resource s3c_rtc_resource[] = {
[0] = { [0] = {
.start = S3C24XX_PA_ADC, .start = S3C24XX_PA_RTC,
.end = S3C24XX_PA_ADC + S3C24XX_SZ_ADC - 1, .end = S3C24XX_PA_RTC + 0xff,
.flags = IORESOURCE_MEM, .flags = IORESOURCE_MEM,
}, },
[1] = { [1] = {
.start = IRQ_TC, .start = IRQ_RTC,
.end = IRQ_TC, .end = IRQ_RTC,
.flags = IORESOURCE_IRQ, .flags = IORESOURCE_IRQ,
}, },
[2] = { [2] = {
.start = IRQ_ADC, .start = IRQ_TICK,
.end = IRQ_ADC, .end = IRQ_TICK,
.flags = IORESOURCE_IRQ, .flags = IORESOURCE_IRQ
} }
}; };
struct platform_device s3c_device_adc = { struct platform_device s3c_device_rtc = {
.name = "s3c24xx-adc", .name = "s3c2410-rtc",
.id = -1, .id = -1,
.num_resources = ARRAY_SIZE(s3c_adc_resource), .num_resources = ARRAY_SIZE(s3c_rtc_resource),
.resource = s3c_adc_resource, .resource = s3c_rtc_resource,
}; };
#endif /* CONFIG_PLAT_S3C24XX */
/* SDI */ /* SDI */
#ifdef CONFIG_PLAT_S3C24XX
static struct resource s3c_sdi_resource[] = { static struct resource s3c_sdi_resource[] = {
[0] = { [0] = {
.start = S3C24XX_PA_SDI, .start = S3C24XX_PA_SDI,
.end = S3C24XX_PA_SDI + S3C24XX_SZ_SDI - 1, .end = S3C24XX_PA_SDI + S3C24XX_SZ_SDI - 1,
.flags = IORESOURCE_MEM, .flags = IORESOURCE_MEM,
}, },
[1] = { [1] = {
.start = IRQ_SDI, .start = IRQ_SDI,
.end = IRQ_SDI, .end = IRQ_SDI,
.flags = IORESOURCE_IRQ, .flags = IORESOURCE_IRQ,
} }
}; };
struct platform_device s3c_device_sdi = { struct platform_device s3c_device_sdi = {
.name = "s3c2410-sdi", .name = "s3c2410-sdi",
.id = -1, .id = -1,
.num_resources = ARRAY_SIZE(s3c_sdi_resource), .num_resources = ARRAY_SIZE(s3c_sdi_resource),
.resource = s3c_sdi_resource, .resource = s3c_sdi_resource,
}; };
EXPORT_SYMBOL(s3c_device_sdi);
void __init s3c24xx_mci_set_platdata(struct s3c24xx_mci_pdata *pdata) void __init s3c24xx_mci_set_platdata(struct s3c24xx_mci_pdata *pdata)
{ {
s3c_set_platdata(pdata, sizeof(struct s3c24xx_mci_pdata), s3c_set_platdata(pdata, sizeof(struct s3c24xx_mci_pdata),
&s3c_device_sdi); &s3c_device_sdi);
} }
#endif /* CONFIG_PLAT_S3C24XX */
/* SPI */
/* SPI (0) */ #ifdef CONFIG_PLAT_S3C24XX
static struct resource s3c_spi0_resource[] = { static struct resource s3c_spi0_resource[] = {
[0] = { [0] = {
.start = S3C24XX_PA_SPI, .start = S3C24XX_PA_SPI,
.end = S3C24XX_PA_SPI + 0x1f, .end = S3C24XX_PA_SPI + 0x1f,
.flags = IORESOURCE_MEM, .flags = IORESOURCE_MEM,
}, },
[1] = { [1] = {
.start = IRQ_SPI0, .start = IRQ_SPI0,
.end = IRQ_SPI0, .end = IRQ_SPI0,
.flags = IORESOURCE_IRQ, .flags = IORESOURCE_IRQ,
} }
}; };
static u64 s3c_device_spi0_dmamask = 0xffffffffUL;
struct platform_device s3c_device_spi0 = { struct platform_device s3c_device_spi0 = {
.name = "s3c2410-spi", .name = "s3c2410-spi",
.id = 0, .id = 0,
.num_resources = ARRAY_SIZE(s3c_spi0_resource), .num_resources = ARRAY_SIZE(s3c_spi0_resource),
.resource = s3c_spi0_resource, .resource = s3c_spi0_resource,
.dev = { .dev = {
.dma_mask = &s3c_device_spi0_dmamask, .dma_mask = &samsung_device_dma_mask,
.coherent_dma_mask = 0xffffffffUL .coherent_dma_mask = DMA_BIT_MASK(32),
} }
}; };
EXPORT_SYMBOL(s3c_device_spi0);
/* SPI (1) */
static struct resource s3c_spi1_resource[] = { static struct resource s3c_spi1_resource[] = {
[0] = { [0] = {
.start = S3C24XX_PA_SPI + S3C2410_SPI1, .start = S3C24XX_PA_SPI + S3C2410_SPI1,
.end = S3C24XX_PA_SPI + S3C2410_SPI1 + 0x1f, .end = S3C24XX_PA_SPI + S3C2410_SPI1 + 0x1f,
.flags = IORESOURCE_MEM, .flags = IORESOURCE_MEM,
}, },
[1] = { [1] = {
.start = IRQ_SPI1, .start = IRQ_SPI1,
.end = IRQ_SPI1, .end = IRQ_SPI1,
.flags = IORESOURCE_IRQ, .flags = IORESOURCE_IRQ,
} }
}; };
static u64 s3c_device_spi1_dmamask = 0xffffffffUL;
struct platform_device s3c_device_spi1 = { struct platform_device s3c_device_spi1 = {
.name = "s3c2410-spi", .name = "s3c2410-spi",
.id = 1, .id = 1,
.num_resources = ARRAY_SIZE(s3c_spi1_resource), .num_resources = ARRAY_SIZE(s3c_spi1_resource),
.resource = s3c_spi1_resource, .resource = s3c_spi1_resource,
.dev = { .dev = {
.dma_mask = &s3c_device_spi1_dmamask, .dma_mask = &samsung_device_dma_mask,
.coherent_dma_mask = 0xffffffffUL .coherent_dma_mask = DMA_BIT_MASK(32),
} }
}; };
#endif /* CONFIG_PLAT_S3C24XX */
EXPORT_SYMBOL(s3c_device_spi1); /* Touchscreen */
#ifdef CONFIG_CPU_S3C2440
/* Camif Controller */
static struct resource s3c_camif_resource[] = { #ifdef CONFIG_PLAT_S3C24XX
static struct resource s3c_ts_resource[] = {
[0] = { [0] = {
.start = S3C2440_PA_CAMIF, .start = S3C24XX_PA_ADC,
.end = S3C2440_PA_CAMIF + S3C2440_SZ_CAMIF - 1, .end = S3C24XX_PA_ADC + S3C24XX_SZ_ADC - 1,
.flags = IORESOURCE_MEM, .flags = IORESOURCE_MEM,
}, },
[1] = { [1] = {
.start = IRQ_CAM, .start = IRQ_TC,
.end = IRQ_CAM, .end = IRQ_TC,
.flags = IORESOURCE_IRQ, .flags = IORESOURCE_IRQ,
} },
}; };
static u64 s3c_device_camif_dmamask = 0xffffffffUL; struct platform_device s3c_device_ts = {
.name = "s3c2410-ts",
struct platform_device s3c_device_camif = { .id = -1,
.name = "s3c2440-camif", .dev.parent = &s3c_device_adc.dev,
.id = -1, .num_resources = ARRAY_SIZE(s3c_ts_resource),
.num_resources = ARRAY_SIZE(s3c_camif_resource), .resource = s3c_ts_resource,
.resource = s3c_camif_resource,
.dev = {
.dma_mask = &s3c_device_camif_dmamask,
.coherent_dma_mask = 0xffffffffUL
}
}; };
EXPORT_SYMBOL(s3c_device_camif); void __init s3c24xx_ts_set_platdata(struct s3c2410_ts_mach_info *hard_s3c2410ts_info)
{
s3c_set_platdata(hard_s3c2410ts_info,
sizeof(struct s3c2410_ts_mach_info), &s3c_device_ts);
}
#endif /* CONFIG_PLAT_S3C24XX */
/* AC97 */ /* USB Device (Gadget) */
static struct resource s3c_ac97_resource[] = { #ifdef CONFIG_PLAT_S3C24XX
static struct resource s3c_usbgadget_resource[] = {
[0] = { [0] = {
.start = S3C2440_PA_AC97, .start = S3C24XX_PA_USBDEV,
.end = S3C2440_PA_AC97 + S3C2440_SZ_AC97 -1, .end = S3C24XX_PA_USBDEV + S3C24XX_SZ_USBDEV - 1,
.flags = IORESOURCE_MEM, .flags = IORESOURCE_MEM,
}, },
[1] = { [1] = {
.start = IRQ_S3C244x_AC97, .start = IRQ_USBD,
.end = IRQ_S3C244x_AC97, .end = IRQ_USBD,
.flags = IORESOURCE_IRQ, .flags = IORESOURCE_IRQ,
}, }
[2] = {
.name = "PCM out",
.start = DMACH_PCM_OUT,
.end = DMACH_PCM_OUT,
.flags = IORESOURCE_DMA,
},
[3] = {
.name = "PCM in",
.start = DMACH_PCM_IN,
.end = DMACH_PCM_IN,
.flags = IORESOURCE_DMA,
},
[4] = {
.name = "Mic in",
.start = DMACH_MIC_IN,
.end = DMACH_MIC_IN,
.flags = IORESOURCE_DMA,
},
}; };
static u64 s3c_device_audio_dmamask = 0xffffffffUL; struct platform_device s3c_device_usbgadget = {
.name = "s3c2410-usbgadget",
struct platform_device s3c_device_ac97 = { .id = -1,
.name = "samsung-ac97", .num_resources = ARRAY_SIZE(s3c_usbgadget_resource),
.id = -1, .resource = s3c_usbgadget_resource,
.num_resources = ARRAY_SIZE(s3c_ac97_resource),
.resource = s3c_ac97_resource,
.dev = {
.dma_mask = &s3c_device_audio_dmamask,
.coherent_dma_mask = 0xffffffffUL
}
}; };
EXPORT_SYMBOL(s3c_device_ac97); void __init s3c24xx_udc_set_platdata(struct s3c2410_udc_mach_info *pd)
{
s3c_set_platdata(pd, sizeof(*pd), &s3c_device_usbgadget);
}
#endif /* CONFIG_PLAT_S3C24XX */
/* ASoC I2S */ /* USB High Spped 2.0 Device (Gadget) */
struct platform_device s3c2412_device_iis = { #ifdef CONFIG_PLAT_S3C24XX
.name = "s3c2412-iis", static struct resource s3c_hsudc_resource[] = {
.id = -1, [0] = {
.dev = { .start = S3C2416_PA_HSUDC,
.dma_mask = &s3c_device_audio_dmamask, .end = S3C2416_PA_HSUDC + S3C2416_SZ_HSUDC - 1,
.coherent_dma_mask = 0xffffffffUL .flags = IORESOURCE_MEM,
},
[1] = {
.start = IRQ_USBD,
.end = IRQ_USBD,
.flags = IORESOURCE_IRQ,
} }
}; };
EXPORT_SYMBOL(s3c2412_device_iis); struct platform_device s3c_device_usb_hsudc = {
.name = "s3c-hsudc",
.id = -1,
.num_resources = ARRAY_SIZE(s3c_hsudc_resource),
.resource = s3c_hsudc_resource,
.dev = {
.dma_mask = &samsung_device_dma_mask,
.coherent_dma_mask = DMA_BIT_MASK(32),
},
};
#endif // CONFIG_CPU_S32440 void __init s3c24xx_hsudc_set_platdata(struct s3c24xx_hsudc_platdata *pd)
{
s3c_set_platdata(pd, sizeof(*pd), &s3c_device_usb_hsudc);
}
#endif /* CONFIG_PLAT_S3C24XX */
/* arch/arm/plat-samsung/include/plat/fb-s3c2410.h
*
* Copyright (c) 2004 Arnaud Patard <arnaud.patard@rtp-net.org>
*
* Inspired by pxafb.h
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
#ifndef __ASM_PLAT_FB_S3C2410_H
#define __ASM_PLAT_FB_S3C2410_H __FILE__
struct s3c2410fb_hw {
unsigned long lcdcon1;
unsigned long lcdcon2;
unsigned long lcdcon3;
unsigned long lcdcon4;
unsigned long lcdcon5;
};
/* LCD description */
struct s3c2410fb_display {
/* LCD type */
unsigned type;
/* Screen size */
unsigned short width;
unsigned short height;
/* Screen info */
unsigned short xres;
unsigned short yres;
unsigned short bpp;
unsigned pixclock; /* pixclock in picoseconds */
unsigned short left_margin; /* value in pixels (TFT) or HCLKs (STN) */
unsigned short right_margin; /* value in pixels (TFT) or HCLKs (STN) */
unsigned short hsync_len; /* value in pixels (TFT) or HCLKs (STN) */
unsigned short upper_margin; /* value in lines (TFT) or 0 (STN) */
unsigned short lower_margin; /* value in lines (TFT) or 0 (STN) */
unsigned short vsync_len; /* value in lines (TFT) or 0 (STN) */
/* lcd configuration registers */
unsigned long lcdcon5;
};
struct s3c2410fb_mach_info {
struct s3c2410fb_display *displays; /* attached diplays info */
unsigned num_displays; /* number of defined displays */
unsigned default_display;
/* GPIOs */
unsigned long gpcup;
unsigned long gpcup_mask;
unsigned long gpccon;
unsigned long gpccon_mask;
unsigned long gpdup;
unsigned long gpdup_mask;
unsigned long gpdcon;
unsigned long gpdcon_mask;
/* lpc3600 control register */
unsigned long lpcsel;
};
extern void __init s3c24xx_fb_set_platdata(struct s3c2410fb_mach_info *);
#endif /* __ASM_PLAT_FB_S3C2410_H */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment