a9332fb303
commit 6d3c4c09226ad6bdd662e3e52489ef294a6ce298 Add terasic_mtl vt(4) framebuffer driver terasic_mtl can be built with syscons(4) and vt(4) attachments, selected at compile time. commit 33240259b47a7c990a5a88a19f133a5600432a4c Clear terasic_mtl text buffer on attach commit d188c2d2412953f949624aa35cd07082830943c9 Update terasic vt(4) driver for FreeBSD r269783 commit d1cc54eee852fa4fc9d359d5bb2171d24ec73369 Safety belt to ensure vt(4) fb parameters are correct commit 76e6d468ef45711d7952786095fc4791289ebb4b Improve terasic_mtl_vt fdt parsing - Use OF_getencprop to avoid need for explicit endian handling (submitted by ray@freebsd.org) - Check for expected length and correct pointer type commit 3e2524b8995ab66e8a9295e4c87cbc7126eeddf4 Correct device_printf usage commit 9e53e3c8e0766414e25662c95b09cc51c92443b0 Switch framebuffer to match host endianness Xorg and xf86-video-scfb work much better with a native-endian framebuffer. commit 0f49259d596321ed85288ac0e1fb4ee1c966df48 Switch DE4 to vt(4) and enable kbdmux commit 5bc96ebc89db7d134ad478335090c8477c1677c7 Add missing \n in device_printf calls Submitted by: emaste Sponsored by: DARPA, AFRL
194 lines
5.6 KiB
C
194 lines
5.6 KiB
C
/*-
|
|
* Copyright (c) 2012 Robert N. M. Watson
|
|
* All rights reserved.
|
|
*
|
|
* This software was developed by SRI International and the University of
|
|
* Cambridge Computer Laboratory under DARPA/AFRL contract (FA8750-10-C-0237)
|
|
* ("CTSRD"), as part of the DARPA CRASH research programme.
|
|
*
|
|
* 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 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 AUTHOR 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>
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
#include <sys/param.h>
|
|
#include <sys/bus.h>
|
|
#include <sys/conf.h>
|
|
#include <sys/consio.h> /* struct vt_mode */
|
|
#include <sys/endian.h>
|
|
#include <sys/fbio.h> /* video_adapter_t */
|
|
#include <sys/lock.h>
|
|
#include <sys/mutex.h>
|
|
#include <sys/rman.h>
|
|
#include <sys/systm.h>
|
|
#include <sys/uio.h>
|
|
|
|
#include <machine/bus.h>
|
|
#include <machine/resource.h>
|
|
#include <machine/vm.h>
|
|
|
|
#include <dev/terasic/mtl/terasic_mtl.h>
|
|
|
|
static d_mmap_t terasic_mtl_text_mmap;
|
|
static d_read_t terasic_mtl_text_read;
|
|
static d_write_t terasic_mtl_text_write;
|
|
|
|
static struct cdevsw terasic_mtl_text_cdevsw = {
|
|
.d_version = D_VERSION,
|
|
.d_mmap = terasic_mtl_text_mmap,
|
|
.d_read = terasic_mtl_text_read,
|
|
.d_write = terasic_mtl_text_write,
|
|
.d_name = "terasic_mtl_text",
|
|
};
|
|
|
|
/*
|
|
* All I/O to/from the mtl device must be 16-bit, and aligned to 16-bit.
|
|
*/
|
|
static int
|
|
terasic_mtl_text_read(struct cdev *dev, struct uio *uio, int flag)
|
|
{
|
|
struct terasic_mtl_softc *sc;
|
|
u_long offset, size;
|
|
uint16_t v;
|
|
int error;
|
|
|
|
if (uio->uio_offset < 0 || uio->uio_offset % 2 != 0 ||
|
|
uio->uio_resid % 2 != 0)
|
|
return (ENODEV);
|
|
sc = dev->si_drv1;
|
|
size = rman_get_size(sc->mtl_text_res);
|
|
error = 0;
|
|
if ((uio->uio_offset + uio->uio_resid < 0) ||
|
|
(uio->uio_offset + uio->uio_resid > size))
|
|
return (ENODEV);
|
|
while (uio->uio_resid > 0) {
|
|
offset = uio->uio_offset;
|
|
if (offset + sizeof(v) > size)
|
|
return (ENODEV);
|
|
v = bus_read_2(sc->mtl_text_res, offset);
|
|
error = uiomove(&v, sizeof(v), uio);
|
|
if (error)
|
|
return (error);
|
|
}
|
|
return (error);
|
|
}
|
|
|
|
static int
|
|
terasic_mtl_text_write(struct cdev *dev, struct uio *uio, int flag)
|
|
{
|
|
struct terasic_mtl_softc *sc;
|
|
u_long offset, size;
|
|
uint16_t v;
|
|
int error;
|
|
|
|
if (uio->uio_offset < 0 || uio->uio_offset % 2 != 0 ||
|
|
uio->uio_resid % 2 != 0)
|
|
return (ENODEV);
|
|
sc = dev->si_drv1;
|
|
size = rman_get_size(sc->mtl_text_res);
|
|
error = 0;
|
|
while (uio->uio_resid > 0) {
|
|
offset = uio->uio_offset;
|
|
if (offset + sizeof(v) > size)
|
|
return (ENODEV);
|
|
error = uiomove(&v, sizeof(v), uio);
|
|
if (error)
|
|
return (error);
|
|
bus_write_2(sc->mtl_text_res, offset, v);
|
|
}
|
|
return (error);
|
|
}
|
|
|
|
static int
|
|
terasic_mtl_text_mmap(struct cdev *dev, vm_ooffset_t offset,
|
|
vm_paddr_t *paddr, int nprot, vm_memattr_t *memattr)
|
|
{
|
|
struct terasic_mtl_softc *sc;
|
|
int error;
|
|
|
|
sc = dev->si_drv1;
|
|
error = 0;
|
|
if (trunc_page(offset) == offset &&
|
|
rman_get_size(sc->mtl_text_res) >= offset + PAGE_SIZE) {
|
|
*paddr = rman_get_start(sc->mtl_text_res) + offset;
|
|
*memattr = VM_MEMATTR_UNCACHEABLE;
|
|
} else
|
|
error = ENODEV;
|
|
return (error);
|
|
}
|
|
|
|
void
|
|
terasic_mtl_text_putc(struct terasic_mtl_softc *sc, u_int x, u_int y,
|
|
uint8_t c, uint8_t a)
|
|
{
|
|
u_int offset;
|
|
uint16_t v;
|
|
|
|
KASSERT(x < TERASIC_MTL_COLS, ("%s: TERASIC_MTL_COLS", __func__));
|
|
KASSERT(y < TERASIC_MTL_ROWS, ("%s: TERASIC_MTL_ROWS", __func__));
|
|
|
|
offset = sizeof(uint16_t) * (x + y * TERASIC_MTL_COLS);
|
|
v = (c << TERASIC_MTL_TEXTFRAMEBUF_CHAR_SHIFT) |
|
|
(a << TERASIC_MTL_TEXTFRAMEBUF_ATTR_SHIFT);
|
|
v = htole16(v);
|
|
bus_write_2(sc->mtl_text_res, offset, v);
|
|
}
|
|
|
|
int
|
|
terasic_mtl_text_attach(struct terasic_mtl_softc *sc)
|
|
{
|
|
uint32_t v;
|
|
u_int offset;
|
|
|
|
terasic_mtl_reg_textframebufaddr_get(sc, &v);
|
|
if (v != TERASIC_MTL_TEXTFRAMEBUF_EXPECTED_ADDR) {
|
|
device_printf(sc->mtl_dev, "%s: unexpected text frame buffer "
|
|
"address (%08x); cannot attach\n", __func__, v);
|
|
return (ENXIO);
|
|
}
|
|
for (offset = 0; offset < rman_get_size(sc->mtl_text_res);
|
|
offset += sizeof(uint16_t))
|
|
bus_write_2(sc->mtl_text_res, offset, 0);
|
|
|
|
sc->mtl_text_cdev = make_dev(&terasic_mtl_text_cdevsw, sc->mtl_unit,
|
|
UID_ROOT, GID_WHEEL, 0400, "mtl_text%d", sc->mtl_unit);
|
|
if (sc->mtl_text_cdev == NULL) {
|
|
device_printf(sc->mtl_dev, "%s: make_dev failed\n", __func__);
|
|
return (ENXIO);
|
|
}
|
|
/* XXXRW: Slight race between make_dev(9) and here. */
|
|
TERASIC_MTL_LOCK_INIT(sc);
|
|
sc->mtl_text_cdev->si_drv1 = sc;
|
|
return (0);
|
|
}
|
|
|
|
void
|
|
terasic_mtl_text_detach(struct terasic_mtl_softc *sc)
|
|
{
|
|
|
|
if (sc->mtl_text_cdev != NULL) {
|
|
destroy_dev(sc->mtl_text_cdev);
|
|
TERASIC_MTL_LOCK_DESTROY(sc);
|
|
}
|
|
}
|