2 * linux/arch/sh/board/mpc1211/setup.c
4 * Copyright (C) 2002 Saito.K & Jeanne, Fujii.Y
8 #include <linux/init.h>
10 #include <linux/hdreg.h>
11 #include <linux/ide.h>
12 #include <linux/interrupt.h>
15 #include <asm/machvec.h>
16 #include <asm/mpc1211/mpc1211.h>
17 #include <asm/mpc1211/pci.h>
18 #include <asm/mpc1211/m1543c.h>
21 /* ALI15X3 SMBus address offsets */
22 #define SMBHSTSTS (0 + 0x3100)
23 #define SMBHSTCNT (1 + 0x3100)
24 #define SMBHSTSTART (2 + 0x3100)
25 #define SMBHSTCMD (7 + 0x3100)
26 #define SMBHSTADD (3 + 0x3100)
27 #define SMBHSTDAT0 (4 + 0x3100)
28 #define SMBHSTDAT1 (5 + 0x3100)
29 #define SMBBLKDAT (6 + 0x3100)
32 #define MAX_TIMEOUT 500 /* times 1/100 sec */
34 /* ALI15X3 command constants */
35 #define ALI15X3_ABORT 0x04
36 #define ALI15X3_T_OUT 0x08
37 #define ALI15X3_QUICK 0x00
38 #define ALI15X3_BYTE 0x10
39 #define ALI15X3_BYTE_DATA 0x20
40 #define ALI15X3_WORD_DATA 0x30
41 #define ALI15X3_BLOCK_DATA 0x40
42 #define ALI15X3_BLOCK_CLR 0x80
44 /* ALI15X3 status register bits */
45 #define ALI15X3_STS_IDLE 0x04
46 #define ALI15X3_STS_BUSY 0x08
47 #define ALI15X3_STS_DONE 0x10
48 #define ALI15X3_STS_DEV 0x20 /* device error */
49 #define ALI15X3_STS_COLL 0x40 /* collision or no response */
50 #define ALI15X3_STS_TERM 0x80 /* terminated by abort */
51 #define ALI15X3_STS_ERR 0xE0 /* all the bad error bits */
53 const char *get_system_type(void)
55 return "Interface MPC-1211(CTP/PCI/MPC-SH02)";
58 static void __init pci_write_config(unsigned long busNo,
62 unsigned long cnfData)
65 + ((busNo & 0xff) << 16)
66 + ((devNo & 0x1f) << 11)
67 + ((fncNo & 0x07) << 8)
68 + (cnfAdd & 0xfc)), PCIPAR);
70 ctrl_outl(cnfData, PCIPDR);
74 Initialize IRQ setting
77 static unsigned char m_irq_mask = 0xfb;
78 static unsigned char s_irq_mask = 0xff;
79 volatile unsigned long irq_err_count;
81 static void disable_mpc1211_irq(unsigned int irq)
84 m_irq_mask |= (1 << irq);
85 outb(m_irq_mask,I8259_M_MR);
87 s_irq_mask |= (1 << (irq - 8));
88 outb(s_irq_mask,I8259_S_MR);
93 static void enable_mpc1211_irq(unsigned int irq)
96 m_irq_mask &= ~(1 << irq);
97 outb(m_irq_mask,I8259_M_MR);
99 s_irq_mask &= ~(1 << (irq - 8));
100 outb(s_irq_mask,I8259_S_MR);
104 static inline int mpc1211_irq_real(unsigned int irq)
111 outb(0x0b,I8259_M_CR); /* ISR register */
112 value = inb(I8259_M_CR) & irqmask;
113 outb(0x0a,I8259_M_CR); /* back ro the IPR reg */
116 irqmask = 1<<(irq - 8);
117 outb(0x0b,I8259_S_CR); /* ISR register */
118 value = inb(I8259_S_CR) & irqmask;
119 outb(0x0a,I8259_S_CR); /* back ro the IPR reg */
123 static void mask_and_ack_mpc1211(unsigned int irq)
126 if(m_irq_mask & (1<<irq)){
127 if(!mpc1211_irq_real(irq)){
129 printk("spurious 8259A interrupt: IRQ %x\n",irq);
132 m_irq_mask |= (1<<irq);
134 inb(I8259_M_MR); /* DUMMY */
135 outb(m_irq_mask,I8259_M_MR); /* disable */
136 outb(0x60+irq,I8259_M_CR); /* EOI */
139 if(s_irq_mask & (1<<(irq - 8))){
140 if(!mpc1211_irq_real(irq)){
142 printk("spurious 8259A interrupt: IRQ %x\n",irq);
145 s_irq_mask |= (1<<(irq - 8));
147 inb(I8259_S_MR); /* DUMMY */
148 outb(s_irq_mask,I8259_S_MR); /* disable */
149 outb(0x60+(irq-8),I8259_S_CR); /* EOI */
150 outb(0x60+2,I8259_M_CR);
154 static void end_mpc1211_irq(unsigned int irq)
156 enable_mpc1211_irq(irq);
159 static unsigned int startup_mpc1211_irq(unsigned int irq)
161 enable_mpc1211_irq(irq);
165 static void shutdown_mpc1211_irq(unsigned int irq)
167 disable_mpc1211_irq(irq);
170 static struct hw_interrupt_type mpc1211_irq_type = {
171 .typename = "MPC1211-IRQ",
172 .startup = startup_mpc1211_irq,
173 .shutdown = shutdown_mpc1211_irq,
174 .enable = enable_mpc1211_irq,
175 .disable = disable_mpc1211_irq,
176 .ack = mask_and_ack_mpc1211,
177 .end = end_mpc1211_irq
180 static void make_mpc1211_irq(unsigned int irq)
182 irq_desc[irq].chip = &mpc1211_irq_type;
183 irq_desc[irq].status = IRQ_DISABLED;
184 irq_desc[irq].action = 0;
185 irq_desc[irq].depth = 1;
186 disable_mpc1211_irq(irq);
189 int mpc1211_irq_demux(int irq)
194 outb(0x0c,I8259_M_CR);
195 poll = inb(I8259_M_CR);
200 outb(0x0c,I8259_S_CR);
201 poll = inb(I8259_S_CR);
202 irq = (poll & 0x07) + 8;
208 void __init init_mpc1211_IRQ(void)
212 * Super I/O (Just mimic PC):
225 pci_write_config(0,0,0,0x54, 0xb0b0002d);
226 outb(0x11, I8259_M_CR); /* mater icw1 edge trigger */
227 outb(0x11, I8259_S_CR); /* slave icw1 edge trigger */
228 outb(0x20, I8259_M_MR); /* m icw2 base vec 0x08 */
229 outb(0x28, I8259_S_MR); /* s icw2 base vec 0x70 */
230 outb(0x04, I8259_M_MR); /* m icw3 slave irq2 */
231 outb(0x02, I8259_S_MR); /* s icw3 slave id */
232 outb(0x01, I8259_M_MR); /* m icw4 non buf normal eoi*/
233 outb(0x01, I8259_S_MR); /* s icw4 non buf normal eo1*/
234 outb(0xfb, I8259_M_MR); /* disable irq0--irq7 */
235 outb(0xff, I8259_S_MR); /* disable irq8--irq15 */
237 for ( i=0; i < 16; i++) {
244 static void delay1000(void)
248 for (i=0; i<1000; i++)
252 static int put_smb_blk(unsigned char *p, int address, int command, int no)
258 outb(0xff, SMBHSTSTS);
259 temp = inb(SMBHSTSTS);
260 for (timeout = 0; (timeout < MAX_TIMEOUT) && !(temp & ALI15X3_STS_IDLE); timeout++) {
262 temp = inb(SMBHSTSTS);
264 if (timeout >= MAX_TIMEOUT){
268 outb(((address & 0x7f) << 1), SMBHSTADD);
269 outb(0xc0, SMBHSTCNT);
270 outb(command & 0xff, SMBHSTCMD);
271 outb(no & 0x1f, SMBHSTDAT0);
273 for(i = 1; i <= no; i++) {
274 outb(*p++, SMBBLKDAT);
276 outb(0xff, SMBHSTSTART);
278 temp = inb(SMBHSTSTS);
279 for (timeout = 0; (timeout < MAX_TIMEOUT) && !(temp & (ALI15X3_STS_ERR | ALI15X3_STS_DONE)); timeout++) {
281 temp = inb(SMBHSTSTS);
283 if (timeout >= MAX_TIMEOUT) {
286 if ( temp & ALI15X3_STS_ERR ){
296 struct sh_machine_vector mv_mpc1211 __initmv = {
298 .mv_irq_demux = mpc1211_irq_demux,
299 .mv_init_irq = init_mpc1211_IRQ,
301 #ifdef CONFIG_HEARTBEAT
302 .mv_heartbeat = heartbeat_mpc1211,
308 /* arch/sh/boards/mpc1211/rtc.c */
309 void mpc1211_time_init(void);
311 int __init platform_setup(void)
313 unsigned char spd_buf[128];
315 __set_io_port_base(PA_PCI_IO);
317 pci_write_config(0,0,0,0x54, 0xb0b00000);
320 outb(ALI15X3_ABORT, SMBHSTCNT);
328 } while (put_smb_blk(spd_buf, 0x69, 0, 7) < 0);
330 board_time_init = mpc1211_time_init;