2005-01-06 01:43:34 +00:00
|
|
|
/*-
|
1996-10-13 01:09:24 +00:00
|
|
|
* Copyright (c) 1996, David Greenman
|
|
|
|
* 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 unmodified, 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Cyclades Y PCI serial interface driver
|
|
|
|
*/
|
|
|
|
|
2003-06-11 06:34:30 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
1999-01-15 10:00:12 +00:00
|
|
|
#include "opt_cy_pci_fastintr.h"
|
|
|
|
|
1996-10-13 01:09:24 +00:00
|
|
|
#include <sys/param.h>
|
2000-09-16 18:46:05 +00:00
|
|
|
#include <sys/bus.h>
|
2004-05-01 18:43:00 +00:00
|
|
|
#include <sys/kernel.h>
|
2004-05-30 20:08:47 +00:00
|
|
|
#include <sys/module.h>
|
2001-02-01 09:49:57 +00:00
|
|
|
|
|
|
|
#include <machine/bus.h>
|
|
|
|
#include <sys/rman.h>
|
|
|
|
#include <machine/resource.h>
|
|
|
|
|
|
|
|
#include <dev/pci/pcivar.h>
|
1996-10-13 01:09:24 +00:00
|
|
|
|
2004-05-01 18:09:16 +00:00
|
|
|
#include <dev/cy/cyvar.h>
|
|
|
|
|
2003-12-02 12:47:08 +00:00
|
|
|
#define CY_PCI_BASE_ADDR0 0x10
|
|
|
|
#define CY_PCI_BASE_ADDR1 0x14
|
|
|
|
#define CY_PCI_BASE_ADDR2 0x18
|
|
|
|
|
|
|
|
#define CY_PLX_9050_ICS 0x4c
|
|
|
|
#define CY_PLX_9060_ICS 0x68
|
|
|
|
#define CY_PLX_9050_ICS_IENABLE 0x040
|
|
|
|
#define CY_PLX_9050_ICS_LOCAL_IENABLE 0x001
|
|
|
|
#define CY_PLX_9050_ICS_LOCAL_IPOLARITY 0x002
|
|
|
|
#define CY_PLX_9060_ICS_IENABLE 0x100
|
|
|
|
#define CY_PLX_9060_ICS_LOCAL_IENABLE 0x800
|
2002-02-02 02:22:51 +00:00
|
|
|
|
|
|
|
/* Cyclom-Y Custom Register for PLX ID. */
|
|
|
|
#define PLX_VER 0x3400
|
|
|
|
#define PLX_9050 0x0b
|
|
|
|
#define PLX_9060 0x0c
|
|
|
|
#define PLX_9080 0x0d
|
1996-10-13 01:09:24 +00:00
|
|
|
|
2002-03-20 02:08:01 +00:00
|
|
|
static int cy_pci_attach(device_t dev);
|
|
|
|
static int cy_pci_probe(device_t dev);
|
2001-02-01 09:49:57 +00:00
|
|
|
|
|
|
|
static device_method_t cy_pci_methods[] = {
|
|
|
|
/* Device interface. */
|
|
|
|
DEVMETHOD(device_probe, cy_pci_probe),
|
|
|
|
DEVMETHOD(device_attach, cy_pci_attach),
|
1996-10-13 01:09:24 +00:00
|
|
|
|
2001-02-01 09:49:57 +00:00
|
|
|
{ 0, 0 }
|
1996-10-13 01:09:24 +00:00
|
|
|
};
|
|
|
|
|
2001-02-01 09:49:57 +00:00
|
|
|
static driver_t cy_pci_driver = {
|
2004-05-01 18:09:16 +00:00
|
|
|
cy_driver_name,
|
2001-02-01 09:49:57 +00:00
|
|
|
cy_pci_methods,
|
|
|
|
0,
|
|
|
|
};
|
|
|
|
|
|
|
|
DRIVER_MODULE(cy, pci, cy_pci_driver, cy_devclass, 0, 0);
|
2003-04-15 06:37:30 +00:00
|
|
|
MODULE_DEPEND(cy, pci, 1, 1, 1);
|
2001-02-01 09:49:57 +00:00
|
|
|
|
|
|
|
static int
|
|
|
|
cy_pci_probe(dev)
|
|
|
|
device_t dev;
|
1996-10-13 01:09:24 +00:00
|
|
|
{
|
2001-02-01 09:49:57 +00:00
|
|
|
u_int32_t device_id;
|
|
|
|
|
|
|
|
device_id = pci_get_devid(dev);
|
1999-05-10 10:23:40 +00:00
|
|
|
device_id &= ~0x00060000;
|
2001-02-01 09:49:57 +00:00
|
|
|
if (device_id != 0x0100120e && device_id != 0x0101120e)
|
|
|
|
return (ENXIO);
|
|
|
|
device_set_desc(dev, "Cyclades Cyclom-Y Serial Adapter");
|
2005-03-05 18:30:12 +00:00
|
|
|
return (BUS_PROBE_DEFAULT);
|
1996-10-13 01:09:24 +00:00
|
|
|
}
|
|
|
|
|
2001-02-01 09:49:57 +00:00
|
|
|
static int
|
|
|
|
cy_pci_attach(dev)
|
|
|
|
device_t dev;
|
1996-10-13 01:09:24 +00:00
|
|
|
{
|
2001-02-01 09:49:57 +00:00
|
|
|
struct resource *ioport_res, *irq_res, *mem_res;
|
2003-12-02 12:36:00 +00:00
|
|
|
void *irq_cookie, *vaddr, *vsc;
|
1996-10-13 01:09:24 +00:00
|
|
|
u_int32_t ioport;
|
2003-12-02 12:36:00 +00:00
|
|
|
int irq_setup, ioport_rid, irq_rid, mem_rid;
|
1999-01-11 23:43:54 +00:00
|
|
|
u_char plx_ver;
|
1996-10-13 01:09:24 +00:00
|
|
|
|
2001-02-01 09:49:57 +00:00
|
|
|
ioport_res = NULL;
|
|
|
|
irq_res = NULL;
|
|
|
|
mem_res = NULL;
|
|
|
|
|
|
|
|
ioport_rid = CY_PCI_BASE_ADDR1;
|
|
|
|
ioport_res = bus_alloc_resource(dev, SYS_RES_IOPORT, &ioport_rid,
|
|
|
|
0ul, ~0ul, 0ul, RF_ACTIVE);
|
|
|
|
if (ioport_res == NULL) {
|
|
|
|
device_printf(dev, "ioport resource allocation failed\n");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
ioport = rman_get_start(ioport_res);
|
|
|
|
|
|
|
|
mem_rid = CY_PCI_BASE_ADDR2;
|
|
|
|
mem_res = bus_alloc_resource(dev, SYS_RES_MEMORY, &mem_rid,
|
2003-12-02 12:47:08 +00:00
|
|
|
0ul, ~0ul, 0ul, RF_ACTIVE);
|
2001-02-01 09:49:57 +00:00
|
|
|
if (mem_res == NULL) {
|
|
|
|
device_printf(dev, "memory resource allocation failed\n");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
vaddr = rman_get_virtual(mem_res);
|
1996-10-13 01:09:24 +00:00
|
|
|
|
2003-12-02 12:36:00 +00:00
|
|
|
vsc = cyattach_common(vaddr, 1);
|
|
|
|
if (vsc == NULL) {
|
2001-02-01 09:49:57 +00:00
|
|
|
device_printf(dev, "no ports found!\n");
|
1996-10-13 01:09:24 +00:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2001-02-01 09:49:57 +00:00
|
|
|
irq_rid = 0;
|
|
|
|
irq_res = bus_alloc_resource(dev, SYS_RES_IRQ, &irq_rid, 0ul, ~0ul, 0ul,
|
|
|
|
RF_SHAREABLE | RF_ACTIVE);
|
|
|
|
if (irq_res == NULL) {
|
|
|
|
device_printf(dev, "interrupt resource allocation failed\n");
|
|
|
|
goto fail;
|
|
|
|
}
|
1999-01-15 10:00:12 +00:00
|
|
|
#ifdef CY_PCI_FASTINTR
|
2007-02-23 12:19:07 +00:00
|
|
|
irq_setup = bus_setup_intr(dev, irq_res, INTR_TYPE_TTY,
|
|
|
|
cyintr, NULL, vsc, &irq_cookie);
|
2002-02-02 02:05:44 +00:00
|
|
|
#else
|
|
|
|
irq_setup = ENXIO;
|
1999-01-15 10:00:12 +00:00
|
|
|
#endif
|
2001-02-01 09:49:57 +00:00
|
|
|
if (irq_setup != 0)
|
|
|
|
irq_setup = bus_setup_intr(dev, irq_res, INTR_TYPE_TTY,
|
2007-02-23 12:19:07 +00:00
|
|
|
NULL, (driver_intr_t *)cyintr, vsc, &irq_cookie);
|
2001-02-01 09:49:57 +00:00
|
|
|
if (irq_setup != 0) {
|
|
|
|
device_printf(dev, "interrupt setup failed\n");
|
1996-10-13 01:09:24 +00:00
|
|
|
goto fail;
|
|
|
|
}
|
1999-01-15 10:00:12 +00:00
|
|
|
|
1996-10-13 01:09:24 +00:00
|
|
|
/*
|
|
|
|
* Enable the "local" interrupt input to generate a
|
|
|
|
* PCI interrupt.
|
|
|
|
*/
|
1999-01-11 23:43:54 +00:00
|
|
|
plx_ver = *((u_char *)vaddr + PLX_VER) & 0x0f;
|
1999-01-11 23:35:01 +00:00
|
|
|
switch (plx_ver) {
|
1999-01-11 23:43:54 +00:00
|
|
|
case PLX_9050:
|
2002-03-17 04:10:38 +00:00
|
|
|
outw(ioport + CY_PLX_9050_ICS,
|
|
|
|
CY_PLX_9050_ICS_IENABLE | CY_PLX_9050_ICS_LOCAL_IENABLE |
|
|
|
|
CY_PLX_9050_ICS_LOCAL_IPOLARITY);
|
1999-01-11 23:35:01 +00:00
|
|
|
break;
|
1999-01-11 23:43:54 +00:00
|
|
|
case PLX_9060:
|
|
|
|
case PLX_9080:
|
|
|
|
default: /* Old board, use PLX_9060 values. */
|
|
|
|
outw(ioport + CY_PLX_9060_ICS,
|
|
|
|
inw(ioport + CY_PLX_9060_ICS) | CY_PLX_9060_ICS_IENABLE |
|
|
|
|
CY_PLX_9060_ICS_LOCAL_IENABLE);
|
1999-01-11 23:35:01 +00:00
|
|
|
break;
|
|
|
|
}
|
1996-10-13 01:09:24 +00:00
|
|
|
|
2001-02-01 09:49:57 +00:00
|
|
|
return (0);
|
1996-10-13 01:09:24 +00:00
|
|
|
|
|
|
|
fail:
|
2001-02-01 09:49:57 +00:00
|
|
|
if (ioport_res != NULL)
|
|
|
|
bus_release_resource(dev, SYS_RES_IOPORT, ioport_rid,
|
|
|
|
ioport_res);
|
|
|
|
if (irq_res != NULL)
|
|
|
|
bus_release_resource(dev, SYS_RES_IRQ, irq_rid, irq_res);
|
|
|
|
if (mem_res != NULL)
|
|
|
|
bus_release_resource(dev, SYS_RES_MEMORY, mem_rid, mem_res);
|
|
|
|
return (ENXIO);
|
1996-10-13 01:09:24 +00:00
|
|
|
}
|