2020-02-28 16:04:28 +00:00
|
|
|
/*
|
|
|
|
DingusPPC - The Experimental PowerPC Macintosh emulator
|
2021-10-23 19:00:31 +00:00
|
|
|
Copyright (C) 2018-21 divingkatae and maximum
|
2020-02-28 16:04:28 +00:00
|
|
|
(theweirdo) spatium
|
|
|
|
|
|
|
|
(Contact divingkatae#1017 or powermax#2286 on Discord for more info)
|
|
|
|
|
|
|
|
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/>.
|
|
|
|
*/
|
|
|
|
|
2019-10-14 15:38:47 +00:00
|
|
|
#ifndef MACHINE_ID_H
|
|
|
|
#define MACHINE_ID_H
|
|
|
|
|
2021-10-23 18:17:47 +00:00
|
|
|
#include <devices/common/hwcomponent.h>
|
|
|
|
#include <devices/common/mmiodevice.h>
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
#include <cinttypes>
|
2019-10-14 15:38:47 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
@file Contains definitions for PowerMacintosh machine ID registers.
|
|
|
|
|
|
|
|
The machine ID register is a memory-based register containing hardcoded
|
|
|
|
values the system software can read to identify machine/board it's running on.
|
|
|
|
|
|
|
|
Register location and value meaning are board-dependent.
|
|
|
|
*/
|
|
|
|
|
2021-09-30 21:00:56 +00:00
|
|
|
/**
|
|
|
|
Machine ID register for Nubus Power Macs.
|
|
|
|
It's located at physical address 0x5FFFFFFC and contains four bytes:
|
|
|
|
+0 uint16_t signature = 0xA55A
|
|
|
|
+1 uint8_t machine_type (3 - PowerMac)
|
|
|
|
+2 uint8_t model (0x10 = PDM, 0x12 = Carl Sagan, 0x13 = Cold Fusion)
|
|
|
|
*/
|
|
|
|
class NubusMacID : public MMIODevice {
|
|
|
|
public:
|
|
|
|
NubusMacID(const uint16_t id) {
|
|
|
|
this->name = "Nubus-Machine-id";
|
|
|
|
this->id[0] = 0xA5;
|
|
|
|
this->id[1] = 0x5A;
|
|
|
|
this->id[2] = (id >> 8) & 0xFF;
|
|
|
|
this->id[3] = id & 0xFF;
|
2022-01-26 15:45:21 +00:00
|
|
|
supports_types(HWCompType::MMIO_DEV);
|
2021-09-30 21:00:56 +00:00
|
|
|
};
|
|
|
|
~NubusMacID() = default;
|
|
|
|
|
2022-08-22 10:16:31 +00:00
|
|
|
uint32_t read(uint32_t rgn_start, uint32_t offset, int size) {
|
2021-09-30 21:00:56 +00:00
|
|
|
return (offset < 4 ? this->id[offset] : 0);
|
|
|
|
};
|
|
|
|
|
|
|
|
/* not writable */
|
2022-08-22 10:16:31 +00:00
|
|
|
void write(uint32_t rgn_start, uint32_t offset, uint32_t value, int size) {};
|
2021-09-30 21:00:56 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
uint8_t id[4];
|
|
|
|
};
|
|
|
|
|
2019-10-14 15:38:47 +00:00
|
|
|
/**
|
|
|
|
The machine ID for the Gossamer board is accesible at 0xFF000004 (phys).
|
|
|
|
It contains a 16-bit value revealing machine's capabilities like bus speed,
|
|
|
|
ROM speed, I/O configuration etc.
|
2022-08-15 18:49:06 +00:00
|
|
|
See machines/machinegossamer.cpp for further details.
|
2019-10-14 15:38:47 +00:00
|
|
|
*/
|
|
|
|
class GossamerID : public MMIODevice {
|
|
|
|
public:
|
2020-05-12 18:55:45 +00:00
|
|
|
GossamerID(const uint16_t id) {
|
|
|
|
this->id = id, this->name = "Machine-id";
|
2022-01-26 15:45:21 +00:00
|
|
|
supports_types(HWCompType::MMIO_DEV);
|
2020-05-12 18:55:45 +00:00
|
|
|
};
|
2019-10-14 15:38:47 +00:00
|
|
|
~GossamerID() = default;
|
|
|
|
|
2022-08-22 10:16:31 +00:00
|
|
|
uint32_t read(uint32_t rgn_start, uint32_t offset, int size) {
|
2020-05-12 18:55:45 +00:00
|
|
|
return ((!offset && size == 2) ? this->id : 0);
|
|
|
|
};
|
2019-10-14 15:38:47 +00:00
|
|
|
|
2021-09-30 21:00:56 +00:00
|
|
|
/* not writable */
|
2022-08-22 10:16:31 +00:00
|
|
|
void write(uint32_t rgn_start, uint32_t offset, uint32_t value, int size) {};
|
2019-10-14 15:38:47 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
uint16_t id;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* MACHINE_ID_H */
|