1 // SPDX-License-Identifier: GPL-2.0
3 * arch/sh/boards/landisk/setup.c
5 * I-O DATA Device, Inc. LANDISK Support.
7 * Copyright (C) 2000 Kazumoto Kojima
8 * Copyright (C) 2002 Paul Mundt
9 * Copylight (C) 2002 Atom Create Engineering Co., Ltd.
10 * Copyright (C) 2005-2007 kogiidena
12 #include <linux/init.h>
13 #include <linux/platform_device.h>
14 #include <linux/ata_platform.h>
17 #include <asm/machvec.h>
18 #include <mach-landisk/mach/iodata_landisk.h>
21 static void landisk_power_off(void)
23 __raw_writeb(0x01, PA_SHUTDOWN
);
26 static struct resource cf_ide_resources
[3];
28 static struct pata_platform_info pata_info
= {
32 static struct platform_device cf_ide_device
= {
33 .name
= "pata_platform",
35 .num_resources
= ARRAY_SIZE(cf_ide_resources
),
36 .resource
= cf_ide_resources
,
38 .platform_data
= &pata_info
,
42 static struct platform_device rtc_device
= {
47 static struct platform_device
*landisk_devices
[] __initdata
= {
52 static int __init
landisk_devices_setup(void)
55 unsigned long paddrbase
;
58 /* open I/O area window */
59 paddrbase
= virt_to_phys((void *)PA_AREA5_IO
);
60 prot
= PAGE_KERNEL_PCC(1, _PAGE_PCC_IO16
);
61 cf_ide_base
= ioremap_prot(paddrbase
, PAGE_SIZE
, pgprot_val(prot
));
63 printk("allocate_cf_area : can't open CF I/O window!\n");
67 /* IDE cmd address : 0x1f0-0x1f7 and 0x3f6 */
68 cf_ide_resources
[0].start
= (unsigned long)cf_ide_base
+ 0x40;
69 cf_ide_resources
[0].end
= (unsigned long)cf_ide_base
+ 0x40 + 0x0f;
70 cf_ide_resources
[0].flags
= IORESOURCE_IO
;
71 cf_ide_resources
[1].start
= (unsigned long)cf_ide_base
+ 0x2c;
72 cf_ide_resources
[1].end
= (unsigned long)cf_ide_base
+ 0x2c + 0x03;
73 cf_ide_resources
[1].flags
= IORESOURCE_IO
;
74 cf_ide_resources
[2].start
= IRQ_FATA
;
75 cf_ide_resources
[2].flags
= IORESOURCE_IRQ
;
77 return platform_add_devices(landisk_devices
,
78 ARRAY_SIZE(landisk_devices
));
81 device_initcall(landisk_devices_setup
);
83 static void __init
landisk_setup(char **cmdline_p
)
86 __raw_writeb(__raw_readb(PA_LED
) | 0x03, PA_LED
);
88 printk(KERN_INFO
"I-O DATA DEVICE, INC. \"LANDISK Series\" support.\n");
89 pm_power_off
= landisk_power_off
;
95 static struct sh_machine_vector mv_landisk __initmv
= {
97 .mv_setup
= landisk_setup
,
98 .mv_init_irq
= init_landisk_IRQ
,