Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 | /* * (C) Copyright 2001 * Denis Peter, MPL AG Switzerland * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of * the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA * * * TODO: clean-up */ #include <common.h> #include <asm/processor.h> #include <devices.h> #include "isa.h" #include "piix4_pci.h" #include "kbd.h" #include "video.h" #undef ISA_DEBUG #ifdef ISA_DEBUG #define PRINTF(fmt,args...) printf (fmt ,##args) #else #define PRINTF(fmt,args...) #endif #ifndef TRUE #define TRUE 1 #endif #ifndef FALSE #define FALSE 0 #endif #if defined(CONFIG_PIP405) extern int drv_isa_kbd_init (void); /* fdc (logical device 0) */ const SIO_LOGDEV_TABLE sio_fdc[] = { {0x60, 3}, /* set IO to FDPort (3F0) */ {0x61, 0xF0}, /* set IO to FDPort (3F0) */ {0x70, 06}, /* set IRQ 6 for FDPort */ {0x74, 02}, /* set DMA 2 for FDPort */ {0xF0, 0x05}, /* set to PS2 type */ {0xF1, 0x00}, /* default value */ {0x30, 1}, /* and activate the device */ {0xFF, 0} /* end of device table */ }; /* paralell port (logical device 3) */ const SIO_LOGDEV_TABLE sio_pport[] = { {0x60, 3}, /* set IO to PPort (378) */ {0x61, 0x78}, /* set IO to PPort (378) */ {0x70, 07}, /* set IRQ 7 for PPort */ {0xF1, 00}, /* set PPort to normal */ {0x30, 1}, /* and activate the device */ {0xFF, 0} /* end of device table */ }; /* paralell port (logical device 3) Floppy assigned to lpt */ const SIO_LOGDEV_TABLE sio_pport_fdc[] = { {0x60, 3}, /* set IO to PPort (378) */ {0x61, 0x78}, /* set IO to PPort (378) */ {0x70, 07}, /* set IRQ 7 for PPort */ {0xF1, 02}, /* set PPort to Floppy */ {0x30, 1}, /* and activate the device */ {0xFF, 0} /* end of device table */ }; /* uart 1 (logical device 4) */ const SIO_LOGDEV_TABLE sio_com1[] = { {0x60, 3}, /* set IO to COM1 (3F8) */ {0x61, 0xF8}, /* set IO to COM1 (3F8) */ {0x70, 04}, /* set IRQ 4 for COM1 */ {0x30, 1}, /* and activate the device */ {0xFF, 0} /* end of device table */ }; /* uart 2 (logical device 5) */ const SIO_LOGDEV_TABLE sio_com2[] = { {0x60, 2}, /* set IO to COM2 (2F8) */ {0x61, 0xF8}, /* set IO to COM2 (2F8) */ {0x70, 03}, /* set IRQ 3 for COM2 */ {0x30, 1}, /* and activate the device */ {0xFF, 0} /* end of device table */ }; /* keyboard controller (logical device 7) */ const SIO_LOGDEV_TABLE sio_keyboard[] = { {0x70, 1}, /* set IRQ 1 for keyboard */ {0x72, 12}, /* set IRQ 12 for mouse */ {0xF0, 0}, /* disable Port92 (this is a PowerPC!!) */ {0x30, 1}, /* and activate the device */ {0xFF, 0} /* end of device table */ }; /******************************************************************************* * Config SuperIO FDC37C672 ********************************************************************************/ unsigned char open_cfg_super_IO(int address) { out8(CFG_ISA_IO_BASE_ADDRESS | address,0x55); /* open config */ out8(CFG_ISA_IO_BASE_ADDRESS | address,0x20); /* set address to DEV ID */ if(in8(CFG_ISA_IO_BASE_ADDRESS | address | 0x1)==0x40) /* ok Device ID is correct */ return TRUE; else return FALSE; } void close_cfg_super_IO(int address) { out8(CFG_ISA_IO_BASE_ADDRESS | address,0xAA); /* close config */ } unsigned char read_cfg_super_IO(int address, unsigned char function, unsigned char regaddr) { /* assuming config reg is open */ out8(CFG_ISA_IO_BASE_ADDRESS | address,0x7); /* points to the function reg */ out8(CFG_ISA_IO_BASE_ADDRESS | address | 1,function); /* set the function no */ out8(CFG_ISA_IO_BASE_ADDRESS | address,regaddr); /* sets the address in the function */ return in8(CFG_ISA_IO_BASE_ADDRESS | address | 1); } void write_cfg_super_IO(int address, unsigned char function, unsigned char regaddr, unsigned char data) { /* assuming config reg is open */ out8(CFG_ISA_IO_BASE_ADDRESS | address,0x7); /* points to the function reg */ out8(CFG_ISA_IO_BASE_ADDRESS | address | 1,function); /* set the function no */ out8(CFG_ISA_IO_BASE_ADDRESS | address,regaddr); /* sets the address in the function */ out8(CFG_ISA_IO_BASE_ADDRESS | address | 1,data); /* writes the data */ } void isa_write_table(SIO_LOGDEV_TABLE *ldt,unsigned char ldev) { while (ldt->index != 0xFF) { write_cfg_super_IO(SIO_CFG_PORT, ldev, ldt->index, ldt->val); ldt++; } /* endwhile */ } void isa_sio_loadtable(void) { char *s = getenv("floppy"); /* setup Floppy device 0*/ isa_write_table((SIO_LOGDEV_TABLE *)&sio_fdc,0); /* setup parallel port device 3 */ if(s && !strncmp(s, "lpt", 3)) { printf("SIO: Floppy assigned to LPT\n"); /* floppy is assigned to the LPT */ isa_write_table((SIO_LOGDEV_TABLE *)&sio_pport_fdc,3); } else { /*printf("Floppy assigned to internal port\n");*/ isa_write_table((SIO_LOGDEV_TABLE *)&sio_pport,3); } /* setup Com1 port device 4 */ isa_write_table((SIO_LOGDEV_TABLE *)&sio_com1,4); /* setup Com2 port device 5 */ isa_write_table((SIO_LOGDEV_TABLE *)&sio_com2,5); /* setup keyboards device 7 */ isa_write_table((SIO_LOGDEV_TABLE *)&sio_keyboard,7); } void isa_sio_setup(void) { if(open_cfg_super_IO(SIO_CFG_PORT)==TRUE) { isa_sio_loadtable(); close_cfg_super_IO(0x3F0); } } #endif /****************************************************************************** * IRQ Controller * we use the Vector mode */ struct isa_irq_action { interrupt_handler_t *handler; void *arg; int count; }; static struct isa_irq_action isa_irqs[16]; /* * This contains the irq mask for both 8259A irq controllers, */ static unsigned int cached_irq_mask = 0xfff9; #define cached_imr1 (unsigned char)cached_irq_mask #define cached_imr2 (unsigned char)(cached_irq_mask>>8) #define IMR_1 CFG_ISA_IO_BASE_ADDRESS + PIIX4_ISA_INT1_OCW1 #define IMR_2 CFG_ISA_IO_BASE_ADDRESS + PIIX4_ISA_INT2_OCW1 #define ICW1_1 CFG_ISA_IO_BASE_ADDRESS + PIIX4_ISA_INT1_ICW1 #define ICW1_2 CFG_ISA_IO_BASE_ADDRESS + PIIX4_ISA_INT2_ICW1 #define ICW2_1 CFG_ISA_IO_BASE_ADDRESS + PIIX4_ISA_INT1_ICW2 #define ICW2_2 CFG_ISA_IO_BASE_ADDRESS + PIIX4_ISA_INT2_ICW2 #define ICW3_1 ICW2_1 #define ICW3_2 ICW2_2 #define ICW4_1 ICW2_1 #define ICW4_2 ICW2_2 #define ISR_1 ICW1_1 #define ISR_2 ICW1_2 void disable_8259A_irq(unsigned int irq) { unsigned int mask = 1 << irq; cached_irq_mask |= mask; if (irq & 8) out8(IMR_2,cached_imr2); else out8(IMR_1,cached_imr1); } void enable_8259A_irq(unsigned int irq) { unsigned int mask = ~(1 << irq); cached_irq_mask &= mask; if (irq & 8) out8(IMR_2,cached_imr2); else out8(IMR_1,cached_imr1); } /* int i8259A_irq_pending(unsigned int irq) { unsigned int mask = 1<<irq; int ret; if (irq < 8) ret = inb(0x20) & mask; else ret = inb(0xA0) & (mask >> 8); spin_unlock_irqrestore(&i8259A_lock, flags); return ret; } */ /* * This function assumes to be called rarely. Switching between * 8259A registers is slow. */ int i8259A_irq_real(unsigned int irq) { int value; int irqmask = 1<<irq; if (irq < 8) { out8(ISR_1,0x0B); /* ISR register */ value = in8(ISR_1) & irqmask; out8(ISR_1,0x0A); /* back to the IRR register */ return value; } out8(ISR_2,0x0B); /* ISR register */ value = in8(ISR_2) & (irqmask >> 8); out8(ISR_2,0x0A); /* back to the IRR register */ return value; } /* * Careful! The 8259A is a fragile beast, it pretty * much _has_ to be done exactly like this (mask it * first, _then_ send the EOI, and the order of EOI * to the two 8259s is important! */ void mask_and_ack_8259A(unsigned int irq) { unsigned int irqmask = 1 << irq; unsigned int temp_irqmask = cached_irq_mask; /* * Lightweight spurious IRQ detection. We do not want * to overdo spurious IRQ handling - it's usually a sign * of hardware problems, so we only do the checks we can * do without slowing down good hardware unnecesserily. * * Note that IRQ7 and IRQ15 (the two spurious IRQs * usually resulting from the 8259A-1|2 PICs) occur * even if the IRQ is masked in the 8259A. Thus we * can check spurious 8259A IRQs without doing the * quite slow i8259A_irq_real() call for every IRQ. * This does not cover 100% of spurious interrupts, * but should be enough to warn the user that there * is something bad going on ... */ if (temp_irqmask & irqmask) goto spurious_8259A_irq; temp_irqmask |= irqmask; handle_real_irq: if (irq & 8) { in8(IMR_2); /* DUMMY - (do we need this?) */ out8(IMR_2,(unsigned char)(temp_irqmask>>8)); out8(ISR_2,0x60+(irq&7));/* 'Specific EOI' to slave */ out8(ISR_1,0x62); /* 'Specific EOI' to master-IRQ2 */ out8(IMR_2,cached_imr2); /* turn it on again */ } else { in8(IMR_1); /* DUMMY - (do we need this?) */ out8(IMR_1,(unsigned char)temp_irqmask); out8(ISR_1,0x60+irq); /* 'Specific EOI' to master */ out8(IMR_1,cached_imr1); /* turn it on again */ } return; spurious_8259A_irq: /* * this is the slow path - should happen rarely. */ if (i8259A_irq_real(irq)) /* * oops, the IRQ _is_ in service according to the * 8259A - not spurious, go handle it. */ goto handle_real_irq; { static int spurious_irq_mask; /* * At this point we can be sure the IRQ is spurious, * lets ACK and report it. [once per IRQ] */ if (!(spurious_irq_mask & irqmask)) { PRINTF("spurious 8259A interrupt: IRQ%d.\n", irq); spurious_irq_mask |= irqmask; } /* irq_err_count++; */ /* * Theoretically we do not have to handle this IRQ, * but in Linux this does not cause problems and is * simpler for us. */ goto handle_real_irq; } } void init_8259A(void) { out8(IMR_1,0xff); /* mask all of 8259A-1 */ out8(IMR_2,0xff); /* mask all of 8259A-2 */ out8(ICW1_1,0x11); /* ICW1: select 8259A-1 init */ out8(ICW2_1,0x20 + 0); /* ICW2: 8259A-1 IR0-7 mapped to 0x20-0x27 */ out8(ICW3_1,0x04); /* 8259A-1 (the master) has a slave on IR2 */ out8(ICW4_1,0x01); /* master expects normal EOI */ out8(ICW1_2,0x11); /* ICW2: select 8259A-2 init */ out8(ICW2_2,0x20 + 8); /* ICW2: 8259A-2 IR0-7 mapped to 0x28-0x2f */ out8(ICW3_2,0x02); /* 8259A-2 is a slave on master's IR2 */ out8(ICW4_2,0x01); /* (slave's support for AEOI in flat mode is to be investigated) */ udelay(10000); /* wait for 8259A to initialize */ out8(IMR_1,cached_imr1); /* restore master IRQ mask */ udelay(10000); /* wait for 8259A to initialize */ out8(IMR_2,cached_imr2); /* restore slave IRQ mask */ } #define PCI_INT_ACK_ADDR 0xEED00000 int handle_isa_int(void) { unsigned long irqack; unsigned char isr1,isr2,irq; /* first we acknokledge the int via the PCI bus */ irqack=in32(PCI_INT_ACK_ADDR); /* now we get the ISRs */ isr2=in8(ISR_2); isr1=in8(ISR_1); irq=(unsigned char)irqack; irq-=32; /* if((irq==7)&&((isr1&0x80)==0)) { PRINTF("IRQ7 detected but not in ISR\n"); } else { */ /* we should handle cascaded interrupts here also */ { /* printf("ISA Irq %d\n",irq); */ isa_irqs[irq].count++; if(irq!=2) { /* just swallow the cascade irq 2 */ if (isa_irqs[irq].handler != NULL) (*isa_irqs[irq].handler)(isa_irqs[irq].arg); /* call isr */ else { PRINTF ("bogus interrupt vector 0x%x\n", irq); } } } /* issue EOI instruction to clear the IRQ */ mask_and_ack_8259A(irq); return 0; } /****************************************************************** * Install and free an ISA interrupt handler. */ void isa_irq_install_handler(int vec, interrupt_handler_t *handler, void *arg) { if (isa_irqs[vec].handler != NULL) { printf ("ISA Interrupt vector %d: handler 0x%x replacing 0x%x\n", vec, (uint)handler, (uint)isa_irqs[vec].handler); } isa_irqs[vec].handler = handler; isa_irqs[vec].arg = arg; enable_8259A_irq(vec); PRINTF ("Install ISA IRQ %d ==> %p, @ %p mask=%04x\n", vec, handler, &isa_irqs[vec].handler,cached_irq_mask); } void isa_irq_free_handler(int vec) { disable_8259A_irq(vec); isa_irqs[vec].handler = NULL; isa_irqs[vec].arg = NULL; PRINTF ("Free ISA IRQ %d mask=%04x\n", vec, cached_irq_mask); } /****************************************************************************/ void isa_init_irq_contr(void) { int i; /* disable all Interrupts */ /* first write icws controller 1 */ for(i=0;i<16;i++) { isa_irqs[i].handler=NULL; isa_irqs[i].arg=NULL; isa_irqs[i].count=0; } init_8259A(); out8(IMR_2,0xFF); } /*************************************************************************/ void isa_show_irq(void) { int vec; printf ("\nISA Interrupt-Information:\n"); printf ("Nr Routine Arg Count\n"); for (vec=0; vec<16; vec++) { if (isa_irqs[vec].handler != NULL) { printf ("%02d %08lx %08lx %d\n", vec, (ulong)isa_irqs[vec].handler, (ulong)isa_irqs[vec].arg, isa_irqs[vec].count); } } } int isa_irq_get_count(int vec) { return(isa_irqs[vec].count); } /****************************************************************** * Init the ISA bus and devices. */ #if defined(CONFIG_PIP405) int isa_init(void) { isa_sio_setup(); isa_init_irq_contr(); drv_isa_kbd_init(); return 0; } #endif |