summaryrefslogtreecommitdiff
path: root/src/boot/driverominit.c
blob: 72ab069d343685c47d3dd3a6c9c532d40121406b (plain)
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
#include "ultra64.h"

OSPiHandle __DriveRomHandle;

OSPiHandle* osDriveRomInit(void) {
#if PLATFORM_IQUE && defined(NON_MATCHING)
    // On iQue, the compiled output of this file is patched so that the
    // `!first` check is always taken. For non-matching builds, we edit the
    // source code instead.
    static u32 first = false;
#else
    static u32 first = true;
#endif
    register s32 status;
    register u32 value;
    register u32 prevInt;

    __osPiGetAccess();

    if (!first) {
        __osPiRelAccess();
        return &__DriveRomHandle;
    }

    first = false;
    __DriveRomHandle.type = DEVICE_TYPE_BULK;
    __DriveRomHandle.baseAddress = PHYS_TO_K1(PI_DOM1_ADDR1);
    __DriveRomHandle.domain = PI_DOMAIN1;
    __DriveRomHandle.speed = 0;
    bzero(&__DriveRomHandle.transferInfo, sizeof(__OSTranxInfo));

    status = IO_READ(PI_STATUS_REG);
    while (status & (PI_STATUS_DMA_BUSY | PI_STATUS_IO_BUSY)) {
        status = IO_READ(PI_STATUS_REG);
    }

    IO_WRITE(PI_BSD_DOM1_LAT_REG, 255);
    IO_WRITE(PI_BSD_DOM1_PGS_REG, 0);
    IO_WRITE(PI_BSD_DOM1_RLS_REG, 3);
    IO_WRITE(PI_BSD_DOM1_PWD_REG, 255);

    value = IO_READ(__DriveRomHandle.baseAddress);
    __DriveRomHandle.latency = value & 0xFF;
    __DriveRomHandle.pulse = (value >> 8) & 0xFF;
    __DriveRomHandle.pageSize = (value >> 0x10) & 0xF;
    __DriveRomHandle.relDuration = (value >> 0x14) & 0xF;

    IO_WRITE(PI_BSD_DOM1_LAT_REG, __DriveRomHandle.latency);
    IO_WRITE(PI_BSD_DOM1_PGS_REG, __DriveRomHandle.pageSize);
    IO_WRITE(PI_BSD_DOM1_RLS_REG, __DriveRomHandle.relDuration);
    IO_WRITE(PI_BSD_DOM1_PWD_REG, __DriveRomHandle.pulse);

    __osCurrentHandle[__DriveRomHandle.domain]->type = __DriveRomHandle.type;
    __osCurrentHandle[__DriveRomHandle.domain]->latency = __DriveRomHandle.latency;
    __osCurrentHandle[__DriveRomHandle.domain]->pageSize = __DriveRomHandle.pageSize;
    __osCurrentHandle[__DriveRomHandle.domain]->relDuration = __DriveRomHandle.relDuration;
    __osCurrentHandle[__DriveRomHandle.domain]->pulse = __DriveRomHandle.pulse;

    prevInt = __osDisableInt();
    __DriveRomHandle.next = __osPiTable;
    __osPiTable = &__DriveRomHandle;
    __osRestoreInt(prevInt);
    __osPiRelAccess();

    return &__DriveRomHandle;
}