1 /* $Id: cf-enabler.c,v 1.4 2004/02/22 22:44:36 kkojima Exp $
3 * linux/drivers/block/cf-enabler.c
5 * Copyright (C) 1999 Niibe Yutaka
6 * Copyright (C) 2000 Toshiharu Nozawa
7 * Copyright (C) 2001 A&D Co., Ltd.
9 * Enable the CF configuration.
12 #include <linux/init.h>
14 #include <linux/vmalloc.h>
15 #include <linux/interrupt.h>
20 * You can connect Compact Flash directly to the bus of SuperH.
21 * This is the enabler for that.
23 * SIM: How generic is this really? It looks pretty board, or at
24 * least SH sub-type, specific to me.
25 * I know it doesn't work on the Overdrive!
29 * 0xB8000000 : Attribute
30 * 0xB8001000 : Common Memory
33 #if defined(CONFIG_CPU_SH4)
34 /* SH4 can't access PCMCIA interface through P2 area.
35 * we must remap it with appropriate attribute bit of the page set.
36 * this part is based on Greg Banks' hd64465_ss.c implementation - Masahiro Abe */
38 #if defined(CONFIG_CF_AREA6)
44 /* use this pointer to access to directly connected compact flash io area*/
47 static int __init
allocate_cf_area(void)
50 unsigned long paddrbase
, psize
;
52 /* open I/O area window */
53 paddrbase
= virt_to_phys((void*)CONFIG_CF_BASE_ADDR
);
55 prot
= PAGE_KERNEL_PCC(slot_no
, _PAGE_PCC_IO16
);
56 cf_io_base
= p3_ioremap(paddrbase
, psize
, prot
.pgprot
);
58 printk("allocate_cf_area : can't open CF I/O window!\n");
61 /* printk("p3_ioremap(paddr=0x%08lx, psize=0x%08lx, prot=0x%08lx)=0x%08lx\n",
62 paddrbase, psize, prot.pgprot, cf_io_base);*/
64 /* XXX : do we need attribute and common-memory area also? */
70 static int __init
cf_init_default(void)
72 /* You must have enabled the card, and set the level interrupt
73 * before reaching this point. Possibly in boot ROM or boot loader.
75 #if defined(CONFIG_CPU_SH4)
82 #if defined(CONFIG_SH_SOLUTION_ENGINE)
84 #elif defined(CONFIG_SH_7722_SOLUTION_ENGINE)
85 #include <asm/se7722.h>
89 * SolutionEngine Seriese
92 * 0xB8400000 : Common Memory
93 * 0xB8500000 : Attribute
97 * 0xB0400000 : Common Memory
98 * 0xB0500000 : Attribute
102 #if defined(CONFIG_SH_SOLUTION_ENGINE) || defined(CONFIG_SH_7722_SOLUTION_ENGINE)
103 static int __init
cf_init_se(void)
105 if ((ctrl_inw(MRSHPC_CSR
) & 0x000c) != 0)
106 return 0; /* Not detected */
108 if ((ctrl_inw(MRSHPC_CSR
) & 0x0080) == 0) {
109 ctrl_outw(0x0674, MRSHPC_CPWCR
); /* Card Vcc is 3.3v? */
111 ctrl_outw(0x0678, MRSHPC_CPWCR
); /* Card Vcc is 5V */
115 * PC-Card window open
116 * flag == COMMON/ATTRIBUTE/IO
118 /* common window open */
119 ctrl_outw(0x8a84, MRSHPC_MW0CR1
);
120 if((ctrl_inw(MRSHPC_CSR
) & 0x4000) != 0)
121 /* common mode & bus width 16bit SWAP = 1*/
122 ctrl_outw(0x0b00, MRSHPC_MW0CR2
);
124 /* common mode & bus width 16bit SWAP = 0*/
125 ctrl_outw(0x0300, MRSHPC_MW0CR2
);
127 /* attribute window open */
128 ctrl_outw(0x8a85, MRSHPC_MW1CR1
);
129 if ((ctrl_inw(MRSHPC_CSR
) & 0x4000) != 0)
130 /* attribute mode & bus width 16bit SWAP = 1*/
131 ctrl_outw(0x0a00, MRSHPC_MW1CR2
);
133 /* attribute mode & bus width 16bit SWAP = 0*/
134 ctrl_outw(0x0200, MRSHPC_MW1CR2
);
136 /* I/O window open */
137 ctrl_outw(0x8a86, MRSHPC_IOWCR1
);
138 ctrl_outw(0x0008, MRSHPC_CDCR
); /* I/O card mode */
139 if ((ctrl_inw(MRSHPC_CSR
) & 0x4000) != 0)
140 ctrl_outw(0x0a00, MRSHPC_IOWCR2
); /* bus width 16bit SWAP = 1*/
142 ctrl_outw(0x0200, MRSHPC_IOWCR2
); /* bus width 16bit SWAP = 0*/
144 ctrl_outw(0x2000, MRSHPC_ICR
);
145 ctrl_outb(0x00, PA_MRSHPC_MW2
+ 0x206);
146 ctrl_outb(0x42, PA_MRSHPC_MW2
+ 0x200);
150 static int __init
cf_init_se(void)
156 int __init
cf_init(void)
158 if( mach_is_se() || mach_is_7722se() ){
162 return cf_init_default();
165 __initcall (cf_init
);