/*
* Copyright (c) 2005, 2011, Miodrag Vallat
*
* 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 AUTHOR ``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 AUTHOR 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: sti_dio.c,v 1.4 2025/05/28 17:33:38 tsutsui Exp $");
/*
* If we already probed it successfully as a console device, go ahead,
* since we will not be able to bus_space_map() again.
*/
if (da->da_scode == conscode ||
sti_dio_probe(da->da_bst, da->da_scode) != 0)
return 10; /* Beat old gendiofb(4) */
base = (paddr_t)dio_scodetopa(da->da_scode + STI_DIO_SCODE_OFFSET);
sc->sc_base = base;
/*
* If we already probed it successfully as a console device, go ahead,
* since we will not be able to bus_space_map() again.
*/
if (da->da_scode == conscode) {
sti_machdep_attach_console(sc);
} else {
if (bus_space_map(bst, base, PAGE_SIZE, 0, &romh)) {
aprint_error(": can't map frame buffer");
return;
}
ssc->bases[0] = romh;
for (i = 1; i < STI_REGION_MAX; i++)
ssc->bases[i] = base;
if (sti_attach_common(ssc, bst, bst, romh,
STI_CODEBASE_M68K) != 0)
return;
}
sti_machdep_attach(sc);
}
static int
sti_dio_probe(bus_space_tag_t bst, int scode)
{
bus_space_handle_t bsh;
bus_addr_t addr, base;
int devtype;
u_int span;
/*
* Sanity checks:
* these devices provide both a DIO and an STI ROM. We expect the
* DIO ROM to be a DIO-II ROM (i.e. to be at a DIO-II select code)
* and report the device as spanning at least four select codes.
*/