NetBSD/sys/dev/acpi/com_acpi.c
mlelstv 6ddf27dbe6 Fix build for i386.
The acpi_intr_establish function should really take an AD_HANDLE parameter.
2019-03-01 09:21:06 +00:00

195 lines
5.3 KiB
C

/* $NetBSD: com_acpi.c,v 1.40 2019/03/01 09:21:06 mlelstv Exp $ */
/*
* Copyright (c) 2002 Jared D. McNeill <jmcneill@invisible.ca>
* All rights reserved.
*
* 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. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* 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: com_acpi.c,v 1.40 2019/03/01 09:21:06 mlelstv Exp $");
#include <sys/param.h>
#include <sys/device.h>
#include <sys/systm.h>
#include <sys/termios.h>
#include <dev/acpi/acpivar.h>
#include <dev/acpi/acpi_intr.h>
#include <dev/ic/comvar.h>
static int com_acpi_match(device_t, cfdata_t , void *);
static void com_acpi_attach(device_t, device_t, void *);
struct com_acpi_softc {
struct com_softc sc_com;
void *sc_ih;
};
CFATTACH_DECL_NEW(com_acpi, sizeof(struct com_acpi_softc), com_acpi_match,
com_acpi_attach, NULL, NULL);
/*
* Supported device IDs
*/
static const char * const com_acpi_ids[] = {
"PNP0500", /* Standard PC COM port */
"PNP0501", /* 16550A-compatible COM port */
"PNP0510", /* Generic IRDA-compatible device */
"PNP0511", /* Generic IRDA-compatible device */
"IBM0071", /* IBM ThinkPad IRDA device */
"SMCF010", /* SMC SuperIO IRDA device */
"NSC6001", /* NSC IRDA device */
"FUJ02E6", /* Fujitsu Serial Pen Tablet */
"HISI0031", /* Hisilicon UART */
"8250dw", /* Designware APB UART */
NULL
};
/*
* Subset of supported device IDs of type COM_TYPE_DW_APB
*/
static const char * const com_acpi_dw_ids[] = {
"HISI0031", /* Hisilicon UART */
"8250dw", /* Designware APB UART */
NULL
};
/*
* com_acpi_match: autoconf(9) match routine
*/
static int
com_acpi_match(device_t parent, cfdata_t match, void *aux)
{
struct acpi_attach_args *aa = aux;
if (aa->aa_node->ad_type != ACPI_TYPE_DEVICE)
return 0;
return acpi_match_hid(aa->aa_node->ad_devinfo, com_acpi_ids);
}
/*
* com_acpi_attach: autoconf(9) attach routine
*/
static void
com_acpi_attach(device_t parent, device_t self, void *aux)
{
struct com_acpi_softc *asc = device_private(self);
struct com_softc *sc = &asc->sc_com;
struct acpi_attach_args *aa = aux;
struct acpi_resources res;
struct acpi_io *io;
struct acpi_mem *mem;
struct acpi_irq *irq;
bus_space_tag_t iot;
bus_space_handle_t ioh;
bus_addr_t base;
bus_size_t size;
ACPI_STATUS rv;
ACPI_INTEGER clock_freq;
sc->sc_dev = self;
/* parse resources */
rv = acpi_resource_parse(sc->sc_dev, aa->aa_node->ad_handle, "_CRS",
&res, &acpi_resource_parse_ops_default);
if (ACPI_FAILURE(rv))
return;
/* find our i/o registers */
io = acpi_res_io(&res, 0);
if (io != NULL) {
iot = aa->aa_iot;
base = io->ar_base;
size = io->ar_length;
} else {
mem = acpi_res_mem(&res, 0);
if (mem != NULL) {
iot = aa->aa_memt;
base = mem->ar_base;
size = mem->ar_length;
} else {
aprint_error_dev(self, "unable to find i/o register "
"and memory resource\n");
goto out;
}
}
/* find our IRQ */
irq = acpi_res_irq(&res, 0);
if (irq == NULL) {
aprint_error_dev(self, "unable to find irq resource\n");
goto out;
}
if (!com_is_console(iot, base, &ioh))
if (bus_space_map(iot, base, size, 0, &ioh)) {
aprint_error_dev(self, "can't map i/o space\n");
goto out;
}
com_init_regs(&sc->sc_regs, iot, ioh, base);
aprint_normal("%s", device_xname(self));
if (acpi_match_hid(aa->aa_node->ad_devinfo, com_acpi_dw_ids) != 0) {
sc->sc_type = COM_TYPE_DW_APB;
SET(sc->sc_hwflags, COM_HW_POLL); /* XXX */
} else {
if (com_probe_subr(&sc->sc_regs) == 0) {
aprint_error(": com probe failed\n");
goto out;
}
}
rv = acpi_dsd_integer(aa->aa_node->ad_handle, "clock-frequency",
&clock_freq);
if (ACPI_SUCCESS(rv))
sc->sc_frequency = clock_freq;
else
sc->sc_frequency = 115200 * 16;
com_attach_subr(sc);
if (!ISSET(sc->sc_hwflags, COM_HW_POLL))
asc->sc_ih = acpi_intr_establish(self,
(uint64_t)(uintptr_t)aa->aa_node->ad_handle,
IPL_SERIAL, true, comintr, sc, device_xname(self));
if (!pmf_device_register(self, NULL, com_resume))
aprint_error_dev(self, "couldn't establish a power handler\n");
goto cleanup;
/*
* In case of irq resource or i/o space mapping error, just set
* a NULL power handler. This may allow us to sleep later on.
*/
out:
if (!pmf_device_register(self, NULL, NULL))
aprint_error_dev(self, "couldn't establish a power handler\n");
cleanup:
acpi_resource_cleanup(&res);
}