/usr/share/faumachine/experiments/test-pic/main.S is in faumachine-data 20110812-1.2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 495 | /* $Id: main.S,v 1.1 2009-05-25 11:43:48 potyra Exp $
*
* Copyright (C) 2009 FAUmachine Team <info@faumachine.org>.
* This program is free software. You can redistribute it and/or modify it
* under the terms of the GNU General Public License, either version 2 of
* the License, or (at your option) any later version. See COPYING.
*/
.text
.globl main
main:
cli
call setup_idt
call setup_pic0_single_autoeoi
call setup_controller
sti
main_loop:
hlt
jmp main_loop
/* program pic0 to 8086 mode, autoeoi, single */
setup_pic0_single_autoeoi:
/* icw1: level triggered, single, ic4 present */
movb $0x1b, %al
outb %al, $0x0020
/* icw2: base address 32 */
movb $0x20, %al
outb %al, $0x0021
/* no icw3 (single) */
/* icw4: autoeoi, 8086 mode */
movb $0x03, %al
outb %al, $0x0021
/* program interrupt mask, disable all ints apart from 1 */
movb $0xfd, %al
outb %al, $0x0021
ret
setup_idt:
lidt idt_descr
movl $str_idt_setup, %edx
call libs_puts
ret
/* ******************* interrupt/exception handlers ******************
* Attention: due to offsets begin split in IDT, the IDT (in the .data
* section) must be close enough to the exception handlers in the .text
* segment, since these are only using offset 15..0 for relocation.
* However the linker seems to do the right thing generating
* R_386_16 relocation entries, so it might not link if the sections
* would be too far away from each other.
* ******************************************************************** */
/* exception handler for all unhandled exceptions */
unhandled_exception:
movl $str_unhandled, %edx
call libs_puts
/* "abort" task (just stall the machine) */
jmp libs_exit
iret
double_fault:
movl $str_double_fault, %edx
call libs_puts
/* "abort" task (just stall the machine) */
jmp libs_exit
iret
/* exception handler for division by 0 */
handle_div0:
movl $str_div0, %edx
call libs_puts
/* "abort" task (just stall the machine) */
jmp libs_exit
iret
irq0_handler:
movl $str_irq0, %edx
call libs_puts
/* "abort" task (just stall the machine) */
jmp libs_exit
iret
irq1_handler:
/* enable for debug output....
movl $str_irq1, %edx
call libs_puts
*/
call release_comp_irq
iret
irq2_handler:
movl $str_irq2, %edx
call libs_puts
/* "abort" task (just stall the machine) */
jmp libs_exit
iret
irq3_handler:
movl $str_irq3, %edx
call libs_puts
/* "abort" task (just stall the machine) */
jmp libs_exit
iret
irq4_handler:
movl $str_irq4, %edx
call libs_puts
/* "abort" task (just stall the machine) */
jmp libs_exit
iret
irq5_handler:
movl $str_irq5, %edx
call libs_puts
/* "abort" task (just stall the machine) */
jmp libs_exit
iret
irq6_handler:
movl $str_irq6, %edx
call libs_puts
/* "abort" task (just stall the machine) */
jmp libs_exit
iret
irq7_handler:
movl $str_irq7, %edx
call libs_puts
/* "abort" task (just stall the machine) */
jmp libs_exit
iret
.data
idt:
/* generic format traps/interrupts:
* (we're little endian!)
*
* l1:
* 15-0: offset 15-0.
* 31-16: segment selector
* l0:
* 7-5: 000, 4-0: reserved (use 0 here)
* 15-8:
* 15: valid?,
* 14+13: dpl,
* 12-9: 0D11 (D=1 -> 32 bit, 0 -> 16 bit)
* 8: leave IF enabled? (1)
*
* 31-16: offset 31-16
*/
/* 0: divide error (Fault) */
.word handle_div0
.word 0x0008 /* segment 8 */
.byte 0 /* constant 0/reserved */
.byte 0xef /* 1110 1111 */
.word 0
/* 1: Debug (Fault/Trap) */
.word unhandled_exception
.word 0x0008 /* segment 8 */
.byte 0 /* constant 0/reserved */
.byte 0xef /* 1110 1111 */
.word 0
/* 2: NMI (Interrupt) */
.word unhandled_exception
.word 0x0008 /* segment 8 */
.byte 0 /* constant 0/reserved */
.byte 0xee /* 1110 1110 */
.word 0
/* 3: Breakpoint (Trap) */
.word unhandled_exception
.word 0x0008 /* segment 8 */
.byte 0 /* constant 0/reserved */
.byte 0xef /* 1110 1111 */
.word 0
/* 4: Overflow (Trap) */
.word unhandled_exception
.word 0x0008 /* segment 8 */
.byte 0 /* constant 0/reserved */
.byte 0xef /* 1110 1111 */
.word 0
/* 5 */
.word unhandled_exception
.word 0x0008 /* segment 8 */
.byte 0 /* constant 0/reserved */
.byte 0xef /* 1110 1111 */
.word 0
/* 6 */
.word unhandled_exception
.word 0x0008 /* segment 8 */
.byte 0 /* constant 0/reserved */
.byte 0xef /* 1110 1111 */
.word 0
/* 7 */
.word unhandled_exception
.word 0x0008 /* segment 8 */
.byte 0 /* constant 0/reserved */
.byte 0xef /* 1110 1111 */
.word 0
/* 8 double fault */
.word double_fault
.word 0x0008 /* segment 8 */
.byte 0 /* constant 0/reserved */
.byte 0xef /* 1110 1111 */
.word 0
/* 9 */
.word unhandled_exception
.word 0x0008 /* segment 8 */
.byte 0 /* constant 0/reserved */
.byte 0xef /* 1110 1111 */
.word 0
/* 10 */
.word unhandled_exception
.word 0x0008 /* segment 8 */
.byte 0 /* constant 0/reserved */
.byte 0xef /* 1110 1111 */
.word 0
/* 11 */
.word unhandled_exception
.word 0x0008 /* segment 8 */
.byte 0 /* constant 0/reserved */
.byte 0xef /* 1110 1111 */
.word 0
/* 12 */
.word unhandled_exception
.word 0x0008 /* segment 8 */
.byte 0 /* constant 0/reserved */
.byte 0xef /* 1110 1111 */
.word 0
/* 13 */
.word unhandled_exception
.word 0x0008 /* segment 8 */
.byte 0 /* constant 0/reserved */
.byte 0xef /* 1110 1111 */
.word 0
/* 14 */
.word unhandled_exception
.word 0x0008 /* segment 8 */
.byte 0 /* constant 0/reserved */
.byte 0xef /* 1110 1111 */
.word 0
/* 15 */
.word unhandled_exception
.word 0x0008 /* segment 8 */
.byte 0 /* constant 0/reserved */
.byte 0xef /* 1110 1111 */
.word 0
/* 16 */
.word unhandled_exception
.word 0x0008 /* segment 8 */
.byte 0 /* constant 0/reserved */
.byte 0xef /* 1110 1111 */
.word 0
/* 17 */
.word unhandled_exception
.word 0x0008 /* segment 8 */
.byte 0 /* constant 0/reserved */
.byte 0xef /* 1110 1111 */
.word 0
/* 18 */
.word unhandled_exception
.word 0x0008 /* segment 8 */
.byte 0 /* constant 0/reserved */
.byte 0xef /* 1110 1111 */
.word 0
/* 19 */
.word unhandled_exception
.word 0x0008 /* segment 8 */
.byte 0 /* constant 0/reserved */
.byte 0xef /* 1110 1111 */
.word 0
/* 20 */
.word unhandled_exception
.word 0x0008 /* segment 8 */
.byte 0 /* constant 0/reserved */
.byte 0xef /* 1110 1111 */
.word 0
/* 21 */
.word unhandled_exception
.word 0x0008 /* segment 8 */
.byte 0 /* constant 0/reserved */
.byte 0xef /* 1110 1111 */
.word 0
/* 22 */
.word unhandled_exception
.word 0x0008 /* segment 8 */
.byte 0 /* constant 0/reserved */
.byte 0xef /* 1110 1111 */
.word 0
/* 23 */
.word unhandled_exception
.word 0x0008 /* segment 8 */
.byte 0 /* constant 0/reserved */
.byte 0xef /* 1110 1111 */
.word 0
/* 24 */
.word unhandled_exception
.word 0x0008 /* segment 8 */
.byte 0 /* constant 0/reserved */
.byte 0xef /* 1110 1111 */
.word 0
/* 25 */
.word unhandled_exception
.word 0x0008 /* segment 8 */
.byte 0 /* constant 0/reserved */
.byte 0xef /* 1110 1111 */
.word 0
/* 26 */
.word unhandled_exception
.word 0x0008 /* segment 8 */
.byte 0 /* constant 0/reserved */
.byte 0xef /* 1110 1111 */
.word 0
/* 27 */
.word unhandled_exception
.word 0x0008 /* segment 8 */
.byte 0 /* constant 0/reserved */
.byte 0xef /* 1110 1111 */
.word 0
/* 28 */
.word unhandled_exception
.word 0x0008 /* segment 8 */
.byte 0 /* constant 0/reserved */
.byte 0xef /* 1110 1111 */
.word 0
/* 29 */
.word unhandled_exception
.word 0x0008 /* segment 8 */
.byte 0 /* constant 0/reserved */
.byte 0xef /* 1110 1111 */
.word 0
/* 30 */
.word unhandled_exception
.word 0x0008 /* segment 8 */
.byte 0 /* constant 0/reserved */
.byte 0xef /* 1110 1111 */
.word 0
/* 31 */
.word unhandled_exception
.word 0x0008 /* segment 8 */
.byte 0 /* constant 0/reserved */
.byte 0xef /* 1110 1111 */
.word 0
/* ********** user defined ********* */
/* 32: pic0, irq 0 */
.word irq0_handler
.word 0x0008 /* segment 8 */
.byte 0 /* constant 0/reserved */
.byte 0xee /* 1110 1110 */
.word 0
/* 33: pic0, irq 1 */
.word irq1_handler
.word 0x0008 /* segment 8 */
.byte 0 /* constant 0/reserved */
.byte 0xee /* 1110 1110 */
.word 0
/* 34: pic0, irq 2 */
.word irq2_handler
.word 0x0008 /* segment 8 */
.byte 0 /* constant 0/reserved */
.byte 0xee /* 1110 1110 */
.word 0
/* 35: pic0, irq 3 */
.word irq3_handler
.word 0x0008 /* segment 8 */
.byte 0 /* constant 0/reserved */
.byte 0xee /* 1110 1110 */
.word 0
/* 36: pic0, irq 4 */
.word irq4_handler
.word 0x0008 /* segment 8 */
.byte 0 /* constant 0/reserved */
.byte 0xee /* 1110 1110 */
.word 0
/* 37: pic0, irq 5 */
.word irq5_handler
.word 0x0008 /* segment 8 */
.byte 0 /* constant 0/reserved */
.byte 0xee /* 1110 1110 */
.word 0
/* 38: pic0, irq 6 */
.word irq6_handler
.word 0x0008 /* segment 8 */
.byte 0 /* constant 0/reserved */
.byte 0xee /* 1110 1110 */
.word 0
/* 39: pic0, irq 7 */
.word irq7_handler
.word 0x0008 /* segment 8 */
.byte 0 /* constant 0/reserved */
.byte 0xee /* 1110 1110 */
.word 0
/* sentinel */
.long 0, 0
idt_end:
idt_descr:
.word (idt_end - idt) - 1
.long idt
.word 0x0000
str_div0:
.ascii "Division by Zero \0"
str_idt_setup:
.ascii "IDT setup. \0"
str_unhandled:
.ascii "Unhandled Exception/Interrupt \0"
str_double_fault:
.ascii "Double Fault \0"
str_irq0:
.ascii "Interrupt 0 \0"
str_irq1:
.ascii "Interrupt 1 \0"
str_irq2:
.ascii "Interrupt 2 \0"
str_irq3:
.ascii "Interrupt 3 \0"
str_irq4:
.ascii "Interrupt 4 \0"
str_irq5:
.ascii "Interrupt 5 \0"
str_irq6:
.ascii "Interrupt 6 \0"
str_irq7:
.ascii "Interrupt 7 \0"
|