|
|
nono 1.7.0
//
// nono
// Copyright (C) 2020 nono project
// Licensed under nono-license.txt
//
//
// LUNA-88K のシステムコントローラのような何か
//
#pragma once
#include "interrupt.h"
class MPU88xx0Device;
class SysCtlrDevice : public InterruptDevice
{
using inherited = InterruptDevice;
// 割り込みマップ 76543210
static const uint32 IntmapNMI = 0x80000000;
static const uint32 IntmapSysClk = 0x08000000;
static const uint32 IntmapSIO = 0x00800000;
static const uint32 IntmapXPHigh = 0x00400000;
static const uint32 IntmapLance = 0x00080000;
static const uint32 IntmapSPC = 0x00008000;
static const uint32 IntmapXPLow = 0x00000080;
static const uint32 IntmapSoft = 0x00000040;
public:
SysCtlrDevice();
~SysCtlrDevice() override;
bool Init() override;
void ResetHard(bool poweron) override;
busdata Read(busaddr addr) override;
busdata Write(busaddr addr, uint32 data) override;
busdata Peek1(uint32 addr) override;
// 割り込みマスク設定
void WriteIntMask(uint32 n, uint32 data);
// InterruptDevice インタフェース
busdata InterruptAcknowledge(int lv) override;
private:
// Peek1() の下請け
uint32 Peek4(uint32 addr) const;
// 割り込み状態を更新
void ChangeInterrupt() override;
// マスク設定レジスタの書き込み値から内部用マスクを作成
static uint32 MakeIntMask(uint32 data, uint n);
DECLARE_MONITOR_SCREEN(MonitorScreen);
// CPU ごとのパラメータ
struct {
// 割り込みマスク (設定値)
// 書き込み時の値をそのまま保持しておくので bit31-26 のみ有効。他は %0。
uint32 maskval;
// 内部用 intmap に対する割り込みマスク
uint32 intmask;
// 現在の最高位の割り込みレベル
int ipl;
// ソフトウェア割り込みの Intmap (アサート中なら IntmapSoft)
uint32 softint;
// ソフトウェア割り込み回数
uint64 softint_count;
} cpu[4] {};
MPU88xx0Device *mpu88xx0 {};
Monitor *monitor {};
};
// 参照はここではなく GetInterruptDevice() を使用する
// (LUNA-88K ではこれがメインの割り込みコントローラなので)
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.