Merge tag 'usb-5.11-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb
[linux/fpc-iii.git] / arch / arm / mach-s3c / dev-uart-s3c64xx.c
blob8288e8d6c092918f50b5d28449710b15340d86ca
1 // SPDX-License-Identifier: GPL-2.0
2 //
3 // Copyright 2008 Openmoko, Inc.
4 // Copyright 2008 Simtec Electronics
5 // Ben Dooks <ben@simtec.co.uk>
6 // http://armlinux.simtec.co.uk/
7 //
8 // Base S3C64XX UART resource and device definitions
10 #include <linux/kernel.h>
11 #include <linux/types.h>
12 #include <linux/interrupt.h>
13 #include <linux/list.h>
14 #include <linux/platform_device.h>
16 #include <asm/mach/arch.h>
17 #include <asm/mach/irq.h>
18 #include "map.h"
19 #include <mach/irqs.h>
21 #include "devs.h"
23 /* Serial port registrations */
25 /* 64xx uarts are closer together */
27 static struct resource s3c64xx_uart0_resource[] = {
28 [0] = DEFINE_RES_MEM(S3C_PA_UART0, SZ_256),
29 [1] = DEFINE_RES_IRQ(IRQ_UART0),
32 static struct resource s3c64xx_uart1_resource[] = {
33 [0] = DEFINE_RES_MEM(S3C_PA_UART1, SZ_256),
34 [1] = DEFINE_RES_IRQ(IRQ_UART1),
37 static struct resource s3c6xx_uart2_resource[] = {
38 [0] = DEFINE_RES_MEM(S3C_PA_UART2, SZ_256),
39 [1] = DEFINE_RES_IRQ(IRQ_UART2),
42 static struct resource s3c64xx_uart3_resource[] = {
43 [0] = DEFINE_RES_MEM(S3C_PA_UART3, SZ_256),
44 [1] = DEFINE_RES_IRQ(IRQ_UART3),
48 struct s3c24xx_uart_resources s3c64xx_uart_resources[] __initdata = {
49 [0] = {
50 .resources = s3c64xx_uart0_resource,
51 .nr_resources = ARRAY_SIZE(s3c64xx_uart0_resource),
53 [1] = {
54 .resources = s3c64xx_uart1_resource,
55 .nr_resources = ARRAY_SIZE(s3c64xx_uart1_resource),
57 [2] = {
58 .resources = s3c6xx_uart2_resource,
59 .nr_resources = ARRAY_SIZE(s3c6xx_uart2_resource),
61 [3] = {
62 .resources = s3c64xx_uart3_resource,
63 .nr_resources = ARRAY_SIZE(s3c64xx_uart3_resource),