31513e4110
http://www.simtec.co.uk/products/EB7500ATX/ also available with RISC-OS as a RiscStation: http://www.riscstation.co.uk/html/products.html This is basic bootstrap with support for ide and networking, currently only tested with booting from ABLE, and not RISC-OS. I would have placed it into evbarm, but iomd doesn't appear to use the same interrupt files as evbarm. I'll check it into here for now, until iomd uses the common interrupt code.
26 lines
470 B
C
26 lines
470 B
C
/* $NetBSD: rsbus.h,v 1.1 2004/01/03 14:31:28 chris Exp $ */
|
|
|
|
#ifndef _RSBUS_H_
|
|
#define _RSBUS_H_
|
|
|
|
#include <sys/conf.h>
|
|
#include <sys/device.h>
|
|
#include <sys/queue.h>
|
|
|
|
#include <machine/bus.h>
|
|
|
|
struct rsbus_softc {
|
|
struct device sc_dev;
|
|
bus_space_tag_t sc_iot;
|
|
bus_space_handle_t sc_ioh;
|
|
};
|
|
|
|
struct rsbus_attach_args {
|
|
bus_space_tag_t sa_iot; /* Bus tag */
|
|
bus_addr_t sa_addr; /* i/o address */
|
|
bus_size_t sa_size;
|
|
int sa_intr;
|
|
};
|
|
|
|
#endif /* _RSBUS_H_ */
|