2022-07-21 21:59:23 +03:00
|
|
|
/**
|
|
|
|
* PIC section of rockOS
|
|
|
|
* Copyright (C) 2022 Furkan Mudanyali
|
|
|
|
*
|
|
|
|
* 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 3 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, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2022-07-20 02:23:23 +03:00
|
|
|
#include <rockos/pic.h>
|
2022-07-19 17:01:31 +03:00
|
|
|
#include <stdio.h>
|
2022-07-19 10:45:38 +03:00
|
|
|
|
|
|
|
void PIC_remap() {
|
2022-07-19 17:01:31 +03:00
|
|
|
printf("Beginning PIC initialization.\n");
|
2022-07-19 10:45:38 +03:00
|
|
|
|
|
|
|
outb(PIC1_COMMAND, ICW1_INIT | ICW1_ICW4); // Start init sequence in cascade mode
|
|
|
|
io_wait();
|
|
|
|
outb(PIC2_COMMAND, ICW1_INIT | ICW1_ICW4);
|
|
|
|
io_wait();
|
|
|
|
|
|
|
|
outb(PIC1_DATA, PIC1_OFFSET); // ICW2: Master PIC vector offset
|
|
|
|
io_wait();
|
|
|
|
outb(PIC2_DATA, PIC2_OFFSET); // ICW2: Slave PIC vector offset
|
|
|
|
io_wait();
|
|
|
|
outb(PIC1_DATA, 4); // ICW3: tell Master PIC that theres a slave PIC at IRQ2 (0000 0100)
|
|
|
|
io_wait();
|
|
|
|
outb(PIC2_DATA, 2); // ICW3: tell Slave PIC its cascade identity (0000 0010)
|
|
|
|
io_wait();
|
|
|
|
|
|
|
|
outb(PIC1_DATA, ICW4_8086);
|
|
|
|
io_wait();
|
|
|
|
outb(PIC2_DATA, ICW4_8086);
|
|
|
|
io_wait();
|
|
|
|
|
2022-07-21 12:20:35 +03:00
|
|
|
outb(PIC1_DATA, 0); // ALL THE INTERRUPTS
|
|
|
|
outb(PIC2_DATA, 0);
|
2022-07-19 10:45:38 +03:00
|
|
|
}
|