blob: a8c5180ae219be2c9b4c0da0e2e7d303f8c1e7c0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/sh/board/mpc1211/setup.c
3 *
4 * Copyright (C) 2002 Saito.K & Jeanne, Fujii.Y
5 *
6 */
7
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/init.h>
9#include <linux/irq.h>
10#include <linux/hdreg.h>
11#include <linux/ide.h>
12#include <linux/interrupt.h>
13
14#include <asm/io.h>
15#include <asm/machvec.h>
16#include <asm/mpc1211/mpc1211.h>
17#include <asm/mpc1211/pci.h>
18#include <asm/mpc1211/m1543c.h>
19
20
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)
30
31/* Other settings */
32#define MAX_TIMEOUT 500 /* times 1/100 sec */
33
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
43
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 */
52
53const char *get_system_type(void)
54{
55 return "Interface MPC-1211(CTP/PCI/MPC-SH02)";
56}
57
58static void __init pci_write_config(unsigned long busNo,
59 unsigned long devNo,
60 unsigned long fncNo,
61 unsigned long cnfAdd,
62 unsigned long cnfData)
63{
64 ctrl_outl((0x80000000
65 + ((busNo & 0xff) << 16)
66 + ((devNo & 0x1f) << 11)
67 + ((fncNo & 0x07) << 8)
68 + (cnfAdd & 0xfc)), PCIPAR);
69
70 ctrl_outl(cnfData, PCIPDR);
71}
72
73/*
74 Initialize IRQ setting
75*/
76
77static unsigned char m_irq_mask = 0xfb;
78static unsigned char s_irq_mask = 0xff;
79volatile unsigned long irq_err_count;
80
81static void disable_mpc1211_irq(unsigned int irq)
82{
83 unsigned long flags;
84
85 save_and_cli(flags);
86 if( irq < 8) {
87 m_irq_mask |= (1 << irq);
88 outb(m_irq_mask,I8259_M_MR);
89 } else {
90 s_irq_mask |= (1 << (irq - 8));
91 outb(s_irq_mask,I8259_S_MR);
92 }
93 restore_flags(flags);
94
95}
96
97static void enable_mpc1211_irq(unsigned int irq)
98{
99 unsigned long flags;
100
101 save_and_cli(flags);
102
103 if( irq < 8) {
104 m_irq_mask &= ~(1 << irq);
105 outb(m_irq_mask,I8259_M_MR);
106 } else {
107 s_irq_mask &= ~(1 << (irq - 8));
108 outb(s_irq_mask,I8259_S_MR);
109 }
110 restore_flags(flags);
111}
112
113static inline int mpc1211_irq_real(unsigned int irq)
114{
115 int value;
116 int irqmask;
117
118 if ( irq < 8) {
119 irqmask = 1<<irq;
120 outb(0x0b,I8259_M_CR); /* ISR register */
121 value = inb(I8259_M_CR) & irqmask;
122 outb(0x0a,I8259_M_CR); /* back ro the IPR reg */
123 return value;
124 }
125 irqmask = 1<<(irq - 8);
126 outb(0x0b,I8259_S_CR); /* ISR register */
127 value = inb(I8259_S_CR) & irqmask;
128 outb(0x0a,I8259_S_CR); /* back ro the IPR reg */
129 return value;
130}
131
132static void mask_and_ack_mpc1211(unsigned int irq)
133{
134 unsigned long flags;
135
136 save_and_cli(flags);
137
138 if(irq < 8) {
139 if(m_irq_mask & (1<<irq)){
140 if(!mpc1211_irq_real(irq)){
141 irq_err_count++;
142 printk("spurious 8259A interrupt: IRQ %x\n",irq);
143 }
144 } else {
145 m_irq_mask |= (1<<irq);
146 }
147 inb(I8259_M_MR); /* DUMMY */
148 outb(m_irq_mask,I8259_M_MR); /* disable */
149 outb(0x60+irq,I8259_M_CR); /* EOI */
150
151 } else {
152 if(s_irq_mask & (1<<(irq - 8))){
153 if(!mpc1211_irq_real(irq)){
154 irq_err_count++;
155 printk("spurious 8259A interrupt: IRQ %x\n",irq);
156 }
157 } else {
158 s_irq_mask |= (1<<(irq - 8));
159 }
160 inb(I8259_S_MR); /* DUMMY */
161 outb(s_irq_mask,I8259_S_MR); /* disable */
162 outb(0x60+(irq-8),I8259_S_CR); /* EOI */
163 outb(0x60+2,I8259_M_CR);
164 }
165 restore_flags(flags);
166}
167
168static void end_mpc1211_irq(unsigned int irq)
169{
170 enable_mpc1211_irq(irq);
171}
172
173static unsigned int startup_mpc1211_irq(unsigned int irq)
174{
175 enable_mpc1211_irq(irq);
176 return 0;
177}
178
179static void shutdown_mpc1211_irq(unsigned int irq)
180{
181 disable_mpc1211_irq(irq);
182}
183
184static struct hw_interrupt_type mpc1211_irq_type = {
185 .typename = "MPC1211-IRQ",
186 .startup = startup_mpc1211_irq,
187 .shutdown = shutdown_mpc1211_irq,
188 .enable = enable_mpc1211_irq,
189 .disable = disable_mpc1211_irq,
190 .ack = mask_and_ack_mpc1211,
191 .end = end_mpc1211_irq
192};
193
194static void make_mpc1211_irq(unsigned int irq)
195{
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700196 irq_desc[irq].chip = &mpc1211_irq_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 irq_desc[irq].status = IRQ_DISABLED;
198 irq_desc[irq].action = 0;
199 irq_desc[irq].depth = 1;
200 disable_mpc1211_irq(irq);
201}
202
203int mpc1211_irq_demux(int irq)
204{
205 unsigned int poll;
206
207 if( irq == 2 ) {
208 outb(0x0c,I8259_M_CR);
209 poll = inb(I8259_M_CR);
210 if(poll & 0x80) {
211 irq = (poll & 0x07);
212 }
213 if( irq == 2) {
214 outb(0x0c,I8259_S_CR);
215 poll = inb(I8259_S_CR);
216 irq = (poll & 0x07) + 8;
217 }
218 }
219 return irq;
220}
221
222void __init init_mpc1211_IRQ(void)
223{
224 int i;
225 /*
226 * Super I/O (Just mimic PC):
227 * 1: keyboard
228 * 3: serial 1
229 * 4: serial 0
230 * 5: printer
231 * 6: floppy
232 * 8: rtc
233 * 10: lan
234 * 12: mouse
235 * 14: ide0
236 * 15: ide1
237 */
238
239 pci_write_config(0,0,0,0x54, 0xb0b0002d);
240 outb(0x11, I8259_M_CR); /* mater icw1 edge trigger */
241 outb(0x11, I8259_S_CR); /* slave icw1 edge trigger */
242 outb(0x20, I8259_M_MR); /* m icw2 base vec 0x08 */
243 outb(0x28, I8259_S_MR); /* s icw2 base vec 0x70 */
244 outb(0x04, I8259_M_MR); /* m icw3 slave irq2 */
245 outb(0x02, I8259_S_MR); /* s icw3 slave id */
246 outb(0x01, I8259_M_MR); /* m icw4 non buf normal eoi*/
247 outb(0x01, I8259_S_MR); /* s icw4 non buf normal eo1*/
248 outb(0xfb, I8259_M_MR); /* disable irq0--irq7 */
249 outb(0xff, I8259_S_MR); /* disable irq8--irq15 */
250
251 for ( i=0; i < 16; i++) {
252 if(i != 2) {
253 make_mpc1211_irq(i);
254 }
255 }
256}
257
Paul Mundt959f85f2006-09-27 16:43:28 +0900258static void delay1000(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259{
260 int i;
261
262 for (i=0; i<1000; i++)
Paul Mundt959f85f2006-09-27 16:43:28 +0900263 ctrl_delay();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264}
265
266static int put_smb_blk(unsigned char *p, int address, int command, int no)
267{
268 int temp;
269 int timeout;
270 int i;
271
272 outb(0xff, SMBHSTSTS);
273 temp = inb(SMBHSTSTS);
274 for (timeout = 0; (timeout < MAX_TIMEOUT) && !(temp & ALI15X3_STS_IDLE); timeout++) {
275 delay1000();
276 temp = inb(SMBHSTSTS);
277 }
278 if (timeout >= MAX_TIMEOUT){
279 return -1;
280 }
281
282 outb(((address & 0x7f) << 1), SMBHSTADD);
283 outb(0xc0, SMBHSTCNT);
284 outb(command & 0xff, SMBHSTCMD);
285 outb(no & 0x1f, SMBHSTDAT0);
286
287 for(i = 1; i <= no; i++) {
288 outb(*p++, SMBBLKDAT);
289 }
290 outb(0xff, SMBHSTSTART);
291
292 temp = inb(SMBHSTSTS);
293 for (timeout = 0; (timeout < MAX_TIMEOUT) && !(temp & (ALI15X3_STS_ERR | ALI15X3_STS_DONE)); timeout++) {
294 delay1000();
295 temp = inb(SMBHSTSTS);
296 }
297 if (timeout >= MAX_TIMEOUT) {
298 return -2;
299 }
300 if ( temp & ALI15X3_STS_ERR ){
301 return -3;
302 }
303 return 0;
304}
305
306/*
307 * The Machine Vector
308 */
309
310struct sh_machine_vector mv_mpc1211 __initmv = {
311 .mv_nr_irqs = 48,
312 .mv_irq_demux = mpc1211_irq_demux,
313 .mv_init_irq = init_mpc1211_IRQ,
314
315#ifdef CONFIG_HEARTBEAT
316 .mv_heartbeat = heartbeat_mpc1211,
317#endif
318};
319
320ALIAS_MV(mpc1211)
321
322/* arch/sh/boards/mpc1211/rtc.c */
323void mpc1211_time_init(void);
324
325int __init platform_setup(void)
326{
327 unsigned char spd_buf[128];
328
329 __set_io_port_base(PA_PCI_IO);
330
331 pci_write_config(0,0,0,0x54, 0xb0b00000);
332
333 do {
334 outb(ALI15X3_ABORT, SMBHSTCNT);
335 spd_buf[0] = 0x0c;
336 spd_buf[1] = 0x43;
337 spd_buf[2] = 0x7f;
338 spd_buf[3] = 0x03;
339 spd_buf[4] = 0x00;
340 spd_buf[5] = 0x03;
341 spd_buf[6] = 0x00;
342 } while (put_smb_blk(spd_buf, 0x69, 0, 7) < 0);
343
344 board_time_init = mpc1211_time_init;
345
346 return 0;
347}
348