mirror of
https://github.com/livingcomputermuseum/UniBone.git
synced 2026-04-30 21:39:57 +00:00
PRU1 code split into multiple images 1. test functions 2. UNIBUS operation PRU1 bus latch interface Write byte/bits access not with MACROS (random optimizer influence), now with *_helper() procedures. Same timing, more determinism, much code saving. Nono more ASM code to write PRU0 XFER area. demo: menu to test UNIBUS signals directly rework "Arbitration" logic: now 3-fold Rework of UNIBUs arbtiration: NONE/CLIENT/MASTER - no Arbitrator (SACK penidng for 11/34 Konsole) (NONE) - phyiscal PDP_11 CPU is Arbitrator (CLIENT) - UniBone implements Arbitrator (MASTER) - Same PRU code loop handles all arbitration types PRU buslatch timing slower, for some problematic PCBs More aggressive bus latch selftest (mixed patterns, running on PRU now) Refinement of ready-to-run scripts - Adapted to changed "demo" menu - new name scheme <OS>_<boot- drive>_<PDP-11CPU> indicates - which OS is run - which disk emulation is used and what is the boot device - what is the (minimum) PDP-11 to run that Merged in Joshs DMA timing for 11/84 UNIBUS master cycles waits 350 us before MSYN, instead 150. Merged in Joshs DMA request queue multiple devices canrequest INTR and DMAs concurrently, will be put on the bus sequentially Merged in Joshs MSCP driver - Build RT-11v5.5 for MSCP - added boot loader "du.lst" MSCP run scrips 2.11BSD on MSCP on PDP-11/44 RT11 on MSCP Fix: image file sizing Disk image file exptend automatically if block beyond current file end is written
112 lines
3.4 KiB
C++
112 lines
3.4 KiB
C++
/* storagedrive.hpp: disk or tape drive, with an image file as storage medium.
|
|
|
|
Copyright (c) 2018, Joerg Hoppe
|
|
j_hoppe@t-online.de, www.retrocmp.com
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a
|
|
copy of this software and associated documentation files (the "Software"),
|
|
to deal in the Software without restriction, including without limitation
|
|
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
and/or sell copies of the Software, and to permit persons to whom the
|
|
Software is furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
all copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
JOERG HOPPE BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
may-2019 JD file_size()
|
|
12-nov-2018 JH entered beta phase
|
|
|
|
*/
|
|
#ifndef _STORAGEDRIVE_HPP_
|
|
#define _STORAGEDRIVE_HPP_
|
|
|
|
using namespace std;
|
|
|
|
#include <stdint.h>
|
|
#include <string>
|
|
#include <fstream>
|
|
#include <assert.h>
|
|
|
|
#include "utils.hpp"
|
|
#include "device.hpp"
|
|
#include "parameter.hpp"
|
|
|
|
class storagecontroller_c;
|
|
|
|
class storagedrive_c: public device_c {
|
|
private:
|
|
fstream f; // image file
|
|
|
|
public:
|
|
storagecontroller_c *controller; // link to parent
|
|
|
|
// identifying number at controller
|
|
parameter_unsigned_c unitno = parameter_unsigned_c(this, "unit", "unit", /*readonly*/
|
|
true, "", "%d", "Unit # of drive", 3, 10); // 3 bits = 0..7 allowed
|
|
|
|
// capacity of medium (disk/tape) in bytes
|
|
parameter_unsigned64_c capacity = parameter_unsigned64_c(this, "capacity", "cap", /*readonly*/
|
|
true, "byte", "%d", "Storage capacity", 64, 10);
|
|
|
|
parameter_string_c image_filepath = parameter_string_c(this, "image", "img", /*readonly*/
|
|
false, "Path to image file");
|
|
|
|
virtual bool on_param_changed(parameter_c *param) override;
|
|
|
|
// parameter_bool_c writeprotect = parameter_bool_c(this, "writeprotect", "wp", /*readonly*/false, "Medium is write protected, different reasons") ;
|
|
|
|
bool file_readonly;bool file_open(std::string imagefname, bool create);bool file_is_open(
|
|
void);
|
|
void file_read(uint8_t *buffer, uint64_t position, unsigned len);
|
|
void file_write(uint8_t *buffer, uint64_t position, unsigned len);
|
|
uint64_t file_size(void);
|
|
void file_close(void);
|
|
|
|
storagedrive_c(storagecontroller_c *controller);
|
|
|
|
};
|
|
|
|
class storagedrive_selftest_c: public storagedrive_c {
|
|
private:
|
|
const char *imagefname;
|
|
unsigned block_size;
|
|
unsigned block_count;
|
|
uint8_t *block_buffer;
|
|
|
|
void block_buffer_fill(unsigned block_number);
|
|
void block_buffer_check(unsigned block_number);
|
|
|
|
public:
|
|
storagedrive_selftest_c(const char *imagefname, unsigned block_size, unsigned block_count) :
|
|
storagedrive_c(NULL) {
|
|
assert((block_size % 4) == 0); // whole uint32s
|
|
this->imagefname = imagefname;
|
|
this->block_size = block_size;
|
|
this->block_count = block_count;
|
|
|
|
this->block_buffer = (uint8_t *) malloc(block_size);
|
|
}
|
|
~storagedrive_selftest_c() {
|
|
free(block_buffer);
|
|
}
|
|
|
|
// fill abstracts
|
|
virtual void on_power_changed(void) {
|
|
}
|
|
virtual void on_init_changed(void) {
|
|
}
|
|
virtual void worker(void) {
|
|
}
|
|
|
|
void test(void);
|
|
};
|
|
|
|
#endif
|