NetBSD-5.0.2/sys/arch/amiga/amiga/simple_busfuncs.c
/* $NetBSD: simple_busfuncs.c,v 1.5 2008/04/28 20:23:12 martin Exp $ */
/*-
* Copyright (c) 1999 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by Ignatios Souvatzis.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: simple_busfuncs.c,v 1.5 2008/04/28 20:23:12 martin Exp $");
/*
* Do NOT use this standalone.
* Instead define the stride (linear, not logarithmic!) in the enclosing
* file (AMIGA_SIMPLE_BUS_STRIDE), then include this one.
* If you want to use it only to provide the functions without creating the
* method array, also define AMIGA_SIMPLE_BUS_NO_ARRAY
*/
#ifndef AMIGA_SIMPLE_BUS_STRIDE
Error AMIGA_SIMPLE_BUS_STRIDE not defined in __FILE__, line __LINE__ .
#endif
#include <machine/bus.h>
#define MKN2(x,y) __CONCAT(x, y)
#define MKN1(x,y) MKN2(x, y)
#define oabs(n) MKN1(n, AMIGA_SIMPLE_BUS_STRIDE)
/* function declarations */
int oabs(bsm_)(bus_space_tag_t, bus_addr_t, bus_size_t, int,
bus_space_handle_t *);
int oabs(bsms_)(bus_space_handle_t, bus_size_t, bus_size_t,
bus_space_handle_t *);
void oabs(bsu_)(bus_space_handle_t, bus_size_t);
bsr (oabs(bsr1_), u_int8_t);
bsw (oabs(bsw1_), u_int8_t);
bsrm(oabs(bsrm1_), u_int8_t);
bswm(oabs(bswm1_), u_int8_t);
bsrm(oabs(bsrr1_), u_int8_t);
bswm(oabs(bswr1_), u_int8_t);
bssr(oabs(bssr1_), u_int8_t);
bscr(oabs(bscr1_), u_int8_t);
/* function definitions */
/* ARGSUSED */
int
oabs(bsm_)(tag, address, size, flags, handlep)
bus_space_tag_t tag;
bus_addr_t address;
bus_size_t size;
int flags;
bus_space_handle_t *handlep;
{
*handlep = tag->base + address * AMIGA_SIMPLE_BUS_STRIDE;
return 0;
}
/* ARGSUSED */
int
oabs(bsms_)(handle, offset, size, nhandlep)
bus_space_handle_t handle;
bus_size_t offset;
bus_size_t size;
bus_space_handle_t *nhandlep;
{
*nhandlep = handle + offset * AMIGA_SIMPLE_BUS_STRIDE;
return 0;
}
/* ARGSUSED */
void
oabs(bsu_)(handle, size)
bus_space_handle_t handle;
bus_size_t size;
{
return;
}
u_int8_t
oabs(bsr1_) (handle, offset)
bus_space_handle_t handle;
bus_size_t offset;
{
u_int8_t *p;
p = (u_int8_t *)(handle + offset * AMIGA_SIMPLE_BUS_STRIDE);
return (*p);
}
void
oabs(bsw1_)(handle, offset, value)
bus_space_handle_t handle;
bus_size_t offset;
unsigned value;
{
u_int8_t *p;
p = (u_int8_t *)(handle + offset * AMIGA_SIMPLE_BUS_STRIDE);
*p = (u_int8_t)value;
}
void
oabs(bsrm1_)(handle, offset, pointer, count)
bus_space_handle_t handle;
bus_size_t offset;
u_int8_t *pointer;
bus_size_t count;
{
volatile u_int8_t *p;
p = (volatile u_int8_t *)(handle + offset * AMIGA_SIMPLE_BUS_STRIDE);
while (count > 0) {
*pointer++ = *p;
--count;
}
}
void
oabs(bswm1_)(handle, offset, pointer, count)
bus_space_handle_t handle;
bus_size_t offset;
const u_int8_t *pointer;
bus_size_t count;
{
volatile u_int8_t *p;
p = (volatile u_int8_t *)(handle + offset * AMIGA_SIMPLE_BUS_STRIDE);
while (count > 0) {
*p = *pointer++;
--count;
}
}
void
oabs(bsrr1_)(handle, offset, pointer, count)
bus_space_handle_t handle;
bus_size_t offset;
u_int8_t *pointer;
bus_size_t count;
{
volatile u_int8_t *p;
p = (volatile u_int8_t *)(handle + offset * AMIGA_SIMPLE_BUS_STRIDE);
while (count > 0) {
*pointer++ = *p;
p += AMIGA_SIMPLE_BUS_STRIDE;
--count;
}
}
void
oabs(bswr1_)(handle, offset, pointer, count)
bus_space_handle_t handle;
bus_size_t offset;
const u_int8_t *pointer;
bus_size_t count;
{
volatile u_int8_t *p;
p = (volatile u_int8_t *)(handle + offset * AMIGA_SIMPLE_BUS_STRIDE);
while (count > 0) {
*p = *pointer++;
p += AMIGA_SIMPLE_BUS_STRIDE;
--count;
}
}
void
oabs(bssr1_)(handle, offset, value, count)
bus_space_handle_t handle;
bus_size_t offset;
unsigned value;
bus_size_t count;
{
volatile u_int8_t *p;
p = (volatile u_int8_t *)(handle + offset * AMIGA_SIMPLE_BUS_STRIDE);
while (count > 0) {
*p = value;
p += AMIGA_SIMPLE_BUS_STRIDE;
--count;
}
}
void
oabs(bscr1_)(handlefrom, from, handleto, to, count)
bus_space_handle_t handlefrom, handleto;
bus_size_t from, to;
bus_size_t count;
{
volatile u_int8_t *p, *q;
p = (volatile u_int8_t *)(handlefrom + from * AMIGA_SIMPLE_BUS_STRIDE);
q = (volatile u_int8_t *)(handleto + to * AMIGA_SIMPLE_BUS_STRIDE);
while (count > 0) {
*q = *p;
p += AMIGA_SIMPLE_BUS_STRIDE;
q += AMIGA_SIMPLE_BUS_STRIDE;
--count;
}
}
#ifdef AMIGA_SIMPLE_BUS_WORD_METHODS
/* word methods */
bsr (oabs(bsr2_), u_int16_t);
bsw (oabs(bsw2_), u_int16_t);
bsrm(oabs(bsrm2_), u_int16_t);
bswm(oabs(bswm2_), u_int16_t);
bsrm(oabs(bsrr2_), u_int16_t);
bswm(oabs(bswr2_), u_int16_t);
bssr(oabs(bssr2_), u_int16_t);
bscr(oabs(bscr2_), u_int16_t);
u_int16_t
oabs(bsr2_) (handle, offset)
bus_space_handle_t handle;
bus_size_t offset;
{
u_int16_t *p;
p = (u_int16_t *)(handle + offset * AMIGA_SIMPLE_BUS_STRIDE);
return (*p);
}
void
oabs(bsw2_)(handle, offset, value)
bus_space_handle_t handle;
bus_size_t offset;
unsigned value;
{
u_int16_t *p;
p = (u_int16_t *)(handle + offset * AMIGA_SIMPLE_BUS_STRIDE);
*p = (u_int16_t)value;
}
void
oabs(bsrm2_)(handle, offset, pointer, count)
bus_space_handle_t handle;
bus_size_t offset;
u_int16_t *pointer;
bus_size_t count;
{
volatile u_int16_t *p;
p = (volatile u_int16_t *)(handle + offset * AMIGA_SIMPLE_BUS_STRIDE);
while (count > 0) {
*pointer++ = *p;
--count;
}
}
void
oabs(bswm2_)(handle, offset, pointer, count)
bus_space_handle_t handle;
bus_size_t offset;
const u_int16_t *pointer;
bus_size_t count;
{
volatile u_int16_t *p;
p = (volatile u_int16_t *)(handle + offset * AMIGA_SIMPLE_BUS_STRIDE);
while (count > 0) {
*p = *pointer++;
--count;
}
}
void
oabs(bsrr2_)(handle, offset, pointer, count)
bus_space_handle_t handle;
bus_size_t offset;
u_int16_t *pointer;
bus_size_t count;
{
volatile u_int8_t *p;
p = (volatile u_int8_t *)(handle + offset * AMIGA_SIMPLE_BUS_STRIDE);
while (count > 0) {
*pointer++ = *(volatile u_int16_t *)p;
p += AMIGA_SIMPLE_BUS_STRIDE * sizeof(u_int16_t);
--count;
}
}
void
oabs(bswr2_)(handle, offset, pointer, count)
bus_space_handle_t handle;
bus_size_t offset;
const u_int16_t *pointer;
bus_size_t count;
{
volatile u_int8_t *p;
p = (volatile u_int8_t *)(handle + offset * AMIGA_SIMPLE_BUS_STRIDE);
while (count > 0) {
*(volatile u_int16_t *)p = *pointer++;
p += AMIGA_SIMPLE_BUS_STRIDE * sizeof(u_int16_t);
--count;
}
}
void
oabs(bssr2_)(handle, offset, value, count)
bus_space_handle_t handle;
bus_size_t offset;
unsigned value;
bus_size_t count;
{
volatile u_int8_t *p;
p = (volatile u_int8_t *)(handle + offset * AMIGA_SIMPLE_BUS_STRIDE);
while (count > 0) {
*(volatile u_int16_t *)p = (unsigned)value;
p += AMIGA_SIMPLE_BUS_STRIDE * sizeof(u_int16_t);
--count;
}
}
void
oabs(bscr2_)(handlefrom, from, handleto, to, count)
bus_space_handle_t handlefrom, handleto;
bus_size_t from, to;
bus_size_t count;
{
volatile u_int8_t *p, *q;
p = (volatile u_int8_t *)(handlefrom + from * AMIGA_SIMPLE_BUS_STRIDE);
q = (volatile u_int8_t *)(handleto + to * AMIGA_SIMPLE_BUS_STRIDE);
while (count > 0) {
*(volatile u_int16_t *)q = *(volatile u_int16_t *)p;
p += AMIGA_SIMPLE_BUS_STRIDE * sizeof(u_int16_t);
q += AMIGA_SIMPLE_BUS_STRIDE * sizeof(u_int16_t);
--count;
}
}
#endif /* AMIGA_SIMPLE_BUS_WORD_METHODS */
#ifndef AMIGA_SIMPLE_BUS_NO_ARRAY
/* method array */
const struct amiga_bus_space_methods oabs(amiga_bus_stride_) = {
oabs(bsm_),
oabs(bsms_),
oabs(bsu_),
0,
0,
oabs(bsr1_),
oabs(bsw1_),
oabs(bsrm1_),
oabs(bswm1_),
oabs(bsrr1_),
oabs(bswr1_),
oabs(bssr1_),
oabs(bscr1_),
#ifdef AMIGA_SIMPLE_BUS_WORD_METHODS
oabs(bsr2_),
oabs(bsw2_),
oabs(bsr2_),
oabs(bsw2_),
oabs(bsrm2_),
oabs(bswm2_),
oabs(bsrm2_),
oabs(bswm2_),
oabs(bsrr2_),
oabs(bswr2_),
oabs(bsrr2_),
oabs(bswr2_),
oabs(bssr2_),
oabs(bscr2_)
#else /* AMIGA_SIMPLE_BUS_WORD_METHODS */
0
#endif /* AMIGA_SIMPLE_BUS_WORD_METHODS */
};
#endif