1
0
mirror of https://github.com/livingcomputermuseum/UniBone.git synced 2026-02-18 13:27:58 +00:00
Files
livingcomputermuseum.UniBone/10.03_app_demo/2_src/menu_masterslave.cpp
Joerg Hoppe db0167afe1 Version 2019-06: many changes
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
2019-06-14 16:31:01 +02:00

386 lines
15 KiB
C++

/* menu_masterslave.cpp: user sub menu
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.
16-Nov-2018 JH created
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
#include <unistd.h>
#include <limits.h> // PATH_MAX
#include "inputline.h"
#include "mcout.h"
#include "application.hpp" // own
#include "gpios.hpp"
#include "pru.hpp"
#include "iopageregister.h"
#include "ddrmem.h"
#include "unibus.h"
#include "mailbox.h"
#include "memoryimage.hpp"
#include "unibusadapter.hpp"
#include "demo_regs.hpp"
// "arbitration_active": operate in an environment without
// arbitration and interrupt fielding?
void application_c::menu_masterslave(enum unibus_c::arbitration_mode_enum arbitration_mode) {
// UniBone uses this test controller:
// memory cells at start of IO page, can be tested with ZKMA
demo_regs_c demo_regs;
bool testcontroller_enabled = false;
bool show_help = true; // show cmds on first screen, then only on error or request
bool active = false; // 1 if PRU executes slave&master logic
unsigned cur_addr = 0;
bool ready;
char *s_choice;
char s_opcode[256], s_param[5][256];
int n_fields;
// iopageregisters_init(); // erase all devices from PRU
// These test need active PRUs
//TODO: rewrite.
hardware_startup(pru_c::PRUCODE_UNIBUS);
buslatches_output_enable(true);
// PRUCODE_UNIBUS can raise events (INIT,ACLO,DCLO)
// handle & clear these
unibusadapter->worker_start() ;
ready = false;
while (!ready) {
// sync pagetable
ddrmem->set_range(emulated_memory_start_addr, emulated_memory_end_addr);
if (show_help) {
show_help = false; // only once
printf("\n");
print_arbitration_info(arbitration_mode, " ");
if (emulated_memory_start_addr > emulated_memory_end_addr)
printf(" UniBone does not emulate memory.\n");
else
printf(" UniBone emulates memory from %06o to %06o.\n",
emulated_memory_start_addr, emulated_memory_end_addr);
printf(" DMA uses %u%% of Unibus band width. DMA block size is %u words.\n",
unibus->dma_bandwidth_percent, unibus->dma_wordcount);
if (arbitration_mode == unibus_c::ARBITRATION_MODE_CLIENT && !active) {
// Old: physical PDP_11 CPU -> test of demo_regs?
printf("***\n");
printf("*** Starting full UNIBUS master/slave logic on PRU\n");
printf("***\n");
if (testcontroller_enabled) {
demo_regs.install();
demo_regs.worker_start();
}
unibusadapter->print_shared_register_map();
active = true;
}
printf(
"bw <percent> bus bandwidth to be used by DMA in percent [1..100, decimal].\n");
printf("bs <wordcount> DMA block word count [16..%u, decimal].\n",
MAX_DMA_WORDCOUNT);
printf(
"m [<startaddr> <endaddr>] memory range emulated by UniBone. No args = all upper. [octal]\n");
printf(
"e <addr> [n] EXAMINE the next <n> words at <addr>. [octal]\n");
printf("e EXAMINE single word from next <addr>\n");
printf(
"d <addr> <val> [<val> ..] DEPOSIT multiple <val> starting at <addr> [octal]\n");
printf("d <val> DEPOSIT <val> into next <addr>\n");
printf(
"sz Size memory: scan addresses from 0, show valid range\n");
printf(
"xe Like EXAM, but local access to DDR memory. Only in emulated memory range.\n");
printf("xd Like DEPOSIT, local access to DDR memory.\n");
printf(
"lb <filename> Load memory content from disk file, as binary image\n");
printf("ll <filename> Load memory content from MACRO-11 listing\n");
printf(
"lp <filename> Load memory content from Absolute Papertape image\n");
printf(
"lt <filename> Load memory content from \"adr-value pairs\" text file\n");
printf("s <filename> Save memory content to binary disk file\n");
printf(
"ta [<startaddr> <endaddr>] Test memory, addr into each word. Max <endaddr> = 757776\n");
printf("tr [<startaddr> <endaddr>] Test memory random\n");
printf("init Pulse UNIBUS INIT\n");
printf("pwr Simulate UNIBUS power cycle (ACLO/DCLO)\n");
printf("i Info about address tables\n");
printf("< <filename> Read command form <file>\n");
printf("q Quit\n");
}
printf("Current EXAM/DEPOSIT address is %06o\n", cur_addr);
s_choice = getchoice();
printf("\n");
n_fields = sscanf(s_choice, "%s %s %s %s %s %s", s_opcode, s_param[0], s_param[1],
s_param[2], s_param[3], s_param[4]);
// in each case, setup mailbox with memroy range to emulate
if (!strcasecmp(s_opcode, "q")) {
ready = true;
} else if (!strcasecmp(s_opcode, "<")) {
if (inputline_fopen(s_param[0]))
printf("Now executing command from file \"%s\"\n", s_param[0]);
else
printf("%s\n", fileErrorText("Error opening command file \"%s\"!", s_param[0]));
} else if (!strcasecmp(s_opcode, "init")) {
unibus->init();
} else if (!strcasecmp(s_opcode, "i")) {
iopageregisters_print_tables();
} else if (!strcasecmp(s_opcode, "pwr")) {
unibus->powercycle();
} else if (!strcasecmp(s_opcode, "bw") && n_fields == 2) {
unibus->dma_bandwidth_percent = strtol(s_param[0], NULL, 10);
if (unibus->dma_bandwidth_percent > 100)
unibus->dma_bandwidth_percent = 100;
if (unibus->dma_bandwidth_percent < 1)
unibus->dma_bandwidth_percent = 1;
} else if (!strcasecmp(s_opcode, "bs") && n_fields == 2) {
unibus->dma_wordcount = strtol(s_param[0], NULL, 10);
if (unibus->dma_wordcount < 16)
unibus->dma_wordcount = 16;
if (unibus->dma_wordcount > MAX_DMA_WORDCOUNT)
unibus->dma_wordcount = MAX_DMA_WORDCOUNT;
} else if (!strcasecmp(s_opcode, "m") && n_fields == 3) {
uint32_t start_addr = strtol(s_param[0], NULL, 8);
uint32_t end_addr = strtol(s_param[1], NULL, 8);
if (ddrmem->set_range(start_addr, end_addr)) {
emulated_memory_start_addr = start_addr;
emulated_memory_end_addr = end_addr;
printf("Responding to addresses in range %06o..%06o with DDR memory.\n",
emulated_memory_start_addr, emulated_memory_end_addr);
}
} else if (!strcasecmp(s_opcode, "m") && n_fields == 1) {
emulate_memory(arbitration_mode);
} else if (!strcasecmp(s_opcode, "sz")) {
uint32_t first_invalid_addr = unibus->test_sizer(arbitration_mode);
if (first_invalid_addr == 0)
printf("Address [0] invalid\n");
else
printf("Found valid addresses in range %06o..%06o.\n", 0,
first_invalid_addr - 2);
} else if (!strcasecmp(s_opcode, "ta") && n_fields == 1) {
uint32_t end_addr = unibus->test_sizer(arbitration_mode) - 2; // well, may be invalid
printf(
"Testing %06o..%06o linear with \"address\" data pattern (stop with ^C) ...\n",
0, end_addr);
unibus->test_mem(arbitration_mode, 0, end_addr, 1);
} else if (!strcasecmp(s_opcode, "ta") && n_fields == 3) {
uint32_t start_addr = strtol(s_param[0], NULL, 8);
uint32_t end_addr = strtol(s_param[1], NULL, 8);
uint32_t last_addr = unibus->test_sizer(arbitration_mode) - 2;
if (end_addr > last_addr)
end_addr = last_addr; // trunc to memory size
printf(
"Testing %06o..%06o linear with \"address\" data pattern (stop with ^C) ...\n",
start_addr, end_addr);
unibus->test_mem(arbitration_mode, start_addr, end_addr, 1);
} else if (!strcasecmp(s_opcode, "tr") && n_fields == 1) {
uint32_t end_addr = unibus->test_sizer(arbitration_mode) - 2; // well, may be invalid
printf("Testing %06o..%06o randomly (stop with ^C) ...\n", 0, end_addr);
unibus->test_mem(arbitration_mode, 0, end_addr, 2);
} else if (!strcasecmp(s_opcode, "tr") && n_fields == 3) {
uint32_t start_addr = strtol(s_param[0], NULL, 8);
uint32_t end_addr = strtol(s_param[1], NULL, 8);
uint32_t last_addr = unibus->test_sizer(arbitration_mode) - 2;
if (end_addr > last_addr)
end_addr = last_addr; // trunc to memory size
printf("Testing %06o..%06o randomly (stop with ^C) ...\n", start_addr, end_addr);
unibus->test_mem(arbitration_mode, start_addr, end_addr, 2);
} else if (!strcasecmp(s_opcode, "e")) {
unsigned blocksize = 1;
unsigned i;
bool timeout;
if (n_fields == 1) { // auto inc addr
cur_addr = (cur_addr + 2) & 0777777;
blocksize = 1;
} else if (n_fields == 2) { // examine addr 1
cur_addr = strtol(s_param[0], NULL, 8) & 0777777;
blocksize = 1;
} else if (n_fields == 3) { // examine addr n
cur_addr = strtol(s_param[0], NULL, 8) & 0777777;
blocksize = strtol(s_param[1], NULL, 8);
}
timeout = !unibus->dma(arbitration_mode, UNIBUS_CONTROL_DATI, cur_addr, blocksize);
for (i = 0; cur_addr <= mailbox->dma.cur_addr; i++, cur_addr += 2)
printf("EXAM %06o -> %06o\n", cur_addr, mailbox->dma.words[i]);
cur_addr = mailbox->dma.cur_addr;
if (timeout)
printf("Bus timeout at %06o.\n", mailbox->dma.cur_addr);
// cur_addr now on last address in block
} else if (!strcasecmp(s_opcode, "xe")) {
unsigned blocksize = 1;
unsigned i;
uint16_t w;
bool access_error;
if (n_fields == 1) { // auto inc addr
cur_addr = (cur_addr + 2) & 0777777;
blocksize = 1;
} else if (n_fields == 2) { // examine addr 1
cur_addr = strtol(s_param[0], NULL, 8) & 0777777;
blocksize = 1;
} else if (n_fields == 3) { // examine addr n
cur_addr = strtol(s_param[0], NULL, 8) & 0777777;
blocksize = strtol(s_param[1], NULL, 8);
}
for (access_error = false, i = 0; !access_error && i < blocksize;
cur_addr += 2, i++) {
access_error = !ddrmem->exam(cur_addr, &w);
if (access_error)
printf("DDRMEM illegal address %06o.\n", cur_addr);
else
printf("DDRMEM EXAM %06o -> %06o\n", cur_addr, w);
}
} else if (!strcasecmp(s_opcode, "d")) {
unsigned blocksize = 1;
unsigned i;
bool timeout;
if (n_fields >= 3) { // deposit <addr> <val> [<val> ...]
blocksize = n_fields - 2;
cur_addr = strtol(s_param[0], NULL, 8) & 0777777;
mailbox->dma.words[0] = strtol(s_param[1], NULL, 8);
mailbox->dma.words[1] = strtol(s_param[2], NULL, 8);
mailbox->dma.words[2] = strtol(s_param[3], NULL, 8);
mailbox->dma.words[3] = strtol(s_param[4], NULL, 8);
} else if (n_fields == 2) { // deposit <val>
cur_addr = (cur_addr + 2) & 0777777;
mailbox->dma.words[0] = strtol(s_param[0], NULL, 8);
blocksize = 1;
}
timeout = !unibus->dma(arbitration_mode, UNIBUS_CONTROL_DATO, cur_addr, blocksize);
for (i = 0; cur_addr <= mailbox->dma.cur_addr; i++, cur_addr += 2)
printf("DEPOSIT %06o <- %06o\n", cur_addr, mailbox->dma.words[i]);
cur_addr = mailbox->dma.cur_addr;
if (timeout)
printf("Bus timeout at %06o.\n", mailbox->dma.cur_addr);
} else if (!strcasecmp(s_opcode, "xd")) {
uint16_t w[256];
unsigned blocksize = 1;
unsigned i;
bool access_error;
if (n_fields >= 3) { // deposit <addr> <val> [<val> ...]
blocksize = n_fields - 2;
cur_addr = strtol(s_param[0], NULL, 8) & 0777777;
w[0] = strtol(s_param[1], NULL, 8);
w[1] = strtol(s_param[2], NULL, 8);
w[2] = strtol(s_param[3], NULL, 8);
w[3] = strtol(s_param[4], NULL, 8);
} else if (n_fields == 2) { // deposit <val>
cur_addr = (cur_addr + 2) & 0777777;
w[0] = strtol(s_param[0], NULL, 8);
blocksize = 1;
}
for (access_error = false, i = 0; !access_error && i < blocksize;
cur_addr += 2, i++) {
access_error = ddrmem->deposit(cur_addr, w[i]);
if (access_error)
printf("DDRMEM illegal address %06o.\n", cur_addr);
else
printf("DDRMEM DEPOSIT %06o <- %06o\n", cur_addr, w[i]);
}
} else if (!strncasecmp(s_opcode, "l", 1) && (n_fields == 2)) {
// is one of the "lx" opcodes
bool load_ok = false;
bool timeout;
unsigned wordcount;
unsigned startaddr, endaddr;
membuffer->init();
if (!strcasecmp(s_opcode, "lb")) {
printf("Loading memory content from binary file %s\n", s_param[0]);
membuffer->init();
load_ok = membuffer->load_binary(s_param[0]);
} else if (!strcasecmp(s_opcode, "ll")) {
printf("Loading memory content from MACRO-11 listing %s\n", s_param[0]);
membuffer->init();
load_ok = membuffer->load_macro11_listing(s_param[0], "start");
} else if (!strcasecmp(s_opcode, "lp")) {
printf("Loading memory content from Absolute Papertape image file %s\n",
s_param[0]);
membuffer->init();
load_ok = membuffer->load_papertape(s_param[0]);
if (membuffer->entry_address == MEMORY_ADDRESS_INVALID)
printf("No entry address defined.\n");
else
printf("Entry address is %06o.\n", membuffer->entry_address);
} else if (!strcasecmp(s_opcode, "lt")) {
printf("Loading memory content from \"adr-value pairs\" text file %s\n",
s_param[0]);
load_ok = membuffer->load_addr_value_text(s_param[0]);
} else
printf("Error: illegal load opcode!\n");
if (!load_ok) {
printf("File load failed, aborting!\n");
} else {
wordcount = membuffer->get_word_count();
membuffer->get_addr_range(&startaddr, &endaddr);
printf(
"Loaded %u words, writing UNIBUS memory[%06o:%06o] with blocksize %u words\n",
wordcount, startaddr, endaddr, unibus->dma_wordcount);
unibus->mem_write(arbitration_mode, membuffer->data.words, startaddr, endaddr,
unibus->dma_wordcount, &timeout);
}
} else if (!strcasecmp(s_opcode, "s") && (n_fields == 2)) {
bool timeout;
uint32_t end_addr = unibus->test_sizer(arbitration_mode) - 2;
printf("Reading UNIBUS memory[0:%06o] with DMA blocks of %u words\n", end_addr,
unibus->dma_wordcount);
unibus->mem_read(arbitration_mode, membuffer->data.words, 0, end_addr,
unibus->dma_wordcount, &timeout);
printf("Saving to file %s\n", s_param[0]);
membuffer->save_binary(s_param[0], end_addr + 2);
} else {
printf("Unknown command \"%s\"!\n", s_choice);
show_help = true;
}
}
if (arbitration_mode == unibus_c::ARBITRATION_MODE_CLIENT && active) {
printf("***\n");
printf("*** Stopping UNIBUS logic on PRU\n");
printf("***\n");
if (testcontroller_enabled) {
demo_regs.worker_stop();
demo_regs.uninstall();
}
active = false;
}
unibusadapter->worker_stop();
// Switch off bus drivers
buslatches_output_enable(false);
hardware_shutdown();
}