2000-10-18 03:25:13 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2000,2001 Jonathan Chen.
|
|
|
|
* 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,
|
|
|
|
* without modification, immediately at the beginning of the file.
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* $FreeBSD$
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Driver for PCI to Cardbus Bridge chips
|
|
|
|
*
|
|
|
|
* References:
|
|
|
|
* TI Datasheets:
|
|
|
|
* http://www-s.ti.com/cgi-bin/sc/generic2.cgi?family=PCI+CARDBUS+CONTROLLERS
|
|
|
|
* Much of the 16-bit PC Card compatibility code stolen from dev/pcic/i82365.c
|
2000-10-22 04:37:57 +00:00
|
|
|
* XXX and should be cleaned up to share as much as possible.
|
2000-10-18 03:25:13 +00:00
|
|
|
*
|
|
|
|
* Written by Jonathan Chen <jon@freebsd.org>
|
|
|
|
* The author would like to acknowledge:
|
|
|
|
* * HAYAKAWA Koichi: Author of the NetBSD code for the same thing
|
|
|
|
* * Warner Losh: Newbus/newcard guru and author of the pccard side of things
|
|
|
|
* * YAMAMOTO Shigeru: Author of another FreeBSD cardbus driver
|
|
|
|
* * David Cross: Author of the initial ugly hack for a specific cardbus card
|
|
|
|
*/
|
|
|
|
|
2001-08-26 23:55:34 +00:00
|
|
|
#define CBB_DEBUG
|
2000-10-18 03:25:13 +00:00
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/errno.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/kthread.h>
|
2001-03-29 10:23:45 +00:00
|
|
|
#include <sys/lock.h>
|
2001-03-30 16:05:50 +00:00
|
|
|
#include <sys/malloc.h>
|
2000-11-28 00:05:20 +00:00
|
|
|
#include <sys/mutex.h>
|
2001-11-26 07:17:09 +00:00
|
|
|
#include <sys/sysctl.h>
|
2000-10-18 03:25:13 +00:00
|
|
|
|
|
|
|
#include <sys/bus.h>
|
|
|
|
#include <machine/bus.h>
|
|
|
|
#include <sys/rman.h>
|
|
|
|
#include <machine/resource.h>
|
|
|
|
|
|
|
|
#include <pci/pcireg.h>
|
|
|
|
#include <pci/pcivar.h>
|
|
|
|
#include <machine/clock.h>
|
|
|
|
|
|
|
|
#include <dev/pccard/pccardreg.h>
|
|
|
|
#include <dev/pccard/pccardvar.h>
|
|
|
|
#include <dev/pcic/i82365reg.h>
|
|
|
|
|
|
|
|
#include <dev/pccbb/pccbbreg.h>
|
|
|
|
#include <dev/pccbb/pccbbvar.h>
|
|
|
|
|
|
|
|
#include "power_if.h"
|
|
|
|
#include "card_if.h"
|
|
|
|
#include "pcib_if.h"
|
|
|
|
|
|
|
|
#if defined CBB_DEBUG
|
|
|
|
#define DPRINTF(x) printf x
|
|
|
|
#define DEVPRINTF(x) device_printf x
|
|
|
|
#else
|
|
|
|
#define DPRINTF(x)
|
|
|
|
#define DEVPRINTF(x)
|
|
|
|
#endif
|
|
|
|
|
2001-08-27 00:09:42 +00:00
|
|
|
#define PCI_MASK_CONFIG(DEV,REG,MASK,SIZE) \
|
2000-10-18 03:25:13 +00:00
|
|
|
pci_write_config(DEV, REG, pci_read_config(DEV, REG, SIZE) MASK, SIZE)
|
|
|
|
#define PCI_MASK2_CONFIG(DEV,REG,MASK1,MASK2,SIZE) \
|
|
|
|
pci_write_config(DEV, REG, ( \
|
|
|
|
pci_read_config(DEV, REG, SIZE) MASK1) MASK2, SIZE)
|
|
|
|
|
2001-02-08 22:14:27 +00:00
|
|
|
/*
|
|
|
|
* XXX all the pcic code really doesn't belong here and needs to be
|
|
|
|
* XXX migrated to its own file, shared with the 16-bit code
|
|
|
|
*/
|
2000-10-18 03:25:13 +00:00
|
|
|
#define PCIC_MASK(SC,REG,MASK) \
|
|
|
|
PCIC_WRITE(SC,REG,PCIC_READ(SC,REG) MASK)
|
|
|
|
#define PCIC_MASK2(SC,REG,MASK,MASK2) \
|
|
|
|
PCIC_WRITE(SC,REG,(PCIC_READ(SC,REG) MASK) MASK2)
|
|
|
|
|
2001-11-26 00:33:04 +00:00
|
|
|
#define PCCBB_START_MEM 0x84000000
|
2001-11-26 02:11:22 +00:00
|
|
|
#define PCCBB_START_IO 0x1000
|
2001-11-26 00:33:04 +00:00
|
|
|
|
2000-10-18 03:25:13 +00:00
|
|
|
struct pccbb_sclist {
|
2001-08-26 23:55:34 +00:00
|
|
|
struct pccbb_softc *sc;
|
2000-10-18 03:25:13 +00:00
|
|
|
STAILQ_ENTRY(pccbb_sclist) entries;
|
|
|
|
};
|
|
|
|
|
|
|
|
static STAILQ_HEAD(, pccbb_sclist) softcs;
|
|
|
|
static int softcs_init = 0;
|
|
|
|
|
|
|
|
struct yenta_chipinfo {
|
2002-01-14 02:59:06 +00:00
|
|
|
uint32_t yc_id;
|
2001-08-26 23:55:34 +00:00
|
|
|
const char *yc_name;
|
|
|
|
int yc_chiptype;
|
|
|
|
int yc_flags;
|
2000-10-18 03:25:13 +00:00
|
|
|
} yc_chipsets[] = {
|
|
|
|
/* Texas Instruments chips */
|
|
|
|
{PCI_DEVICE_ID_PCIC_TI1130, "TI1130 PCI-CardBus Bridge", CB_TI113X,
|
2001-08-26 23:55:34 +00:00
|
|
|
PCCBB_PCIC_IO_RELOC | PCCBB_PCIC_MEM_32},
|
2000-10-18 03:25:13 +00:00
|
|
|
{PCI_DEVICE_ID_PCIC_TI1131, "TI1131 PCI-CardBus Bridge", CB_TI113X,
|
2001-08-26 23:55:34 +00:00
|
|
|
PCCBB_PCIC_IO_RELOC | PCCBB_PCIC_MEM_32},
|
2000-10-18 03:25:13 +00:00
|
|
|
|
|
|
|
{PCI_DEVICE_ID_PCIC_TI1211, "TI1211 PCI-CardBus Bridge", CB_TI12XX,
|
2001-08-26 23:55:34 +00:00
|
|
|
PCCBB_PCIC_IO_RELOC | PCCBB_PCIC_MEM_32},
|
2000-10-18 03:25:13 +00:00
|
|
|
{PCI_DEVICE_ID_PCIC_TI1220, "TI1220 PCI-CardBus Bridge", CB_TI12XX,
|
2001-08-26 23:55:34 +00:00
|
|
|
PCCBB_PCIC_IO_RELOC | PCCBB_PCIC_MEM_32},
|
2000-10-18 03:25:13 +00:00
|
|
|
{PCI_DEVICE_ID_PCIC_TI1221, "TI1221 PCI-CardBus Bridge", CB_TI12XX,
|
2001-08-26 23:55:34 +00:00
|
|
|
PCCBB_PCIC_IO_RELOC | PCCBB_PCIC_MEM_32},
|
2000-10-18 03:25:13 +00:00
|
|
|
{PCI_DEVICE_ID_PCIC_TI1225, "TI1225 PCI-CardBus Bridge", CB_TI12XX,
|
2001-08-26 23:55:34 +00:00
|
|
|
PCCBB_PCIC_IO_RELOC | PCCBB_PCIC_MEM_32},
|
2000-10-18 03:25:13 +00:00
|
|
|
{PCI_DEVICE_ID_PCIC_TI1250, "TI1250 PCI-CardBus Bridge", CB_TI12XX,
|
2001-08-26 23:55:34 +00:00
|
|
|
PCCBB_PCIC_IO_RELOC | PCCBB_PCIC_MEM_32},
|
2000-10-18 03:25:13 +00:00
|
|
|
{PCI_DEVICE_ID_PCIC_TI1251, "TI1251 PCI-CardBus Bridge", CB_TI12XX,
|
2001-08-26 23:55:34 +00:00
|
|
|
PCCBB_PCIC_IO_RELOC | PCCBB_PCIC_MEM_32},
|
2000-10-18 03:25:13 +00:00
|
|
|
{PCI_DEVICE_ID_PCIC_TI1251B,"TI1251B PCI-CardBus Bridge",CB_TI12XX,
|
2001-08-26 23:55:34 +00:00
|
|
|
PCCBB_PCIC_IO_RELOC | PCCBB_PCIC_MEM_32},
|
2000-10-18 03:25:13 +00:00
|
|
|
{PCI_DEVICE_ID_PCIC_TI1410, "TI1410 PCI-CardBus Bridge", CB_TI12XX,
|
2001-08-26 23:55:34 +00:00
|
|
|
PCCBB_PCIC_IO_RELOC | PCCBB_PCIC_MEM_32},
|
2000-10-18 03:25:13 +00:00
|
|
|
{PCI_DEVICE_ID_PCIC_TI1420, "TI1420 PCI-CardBus Bridge", CB_TI12XX,
|
2001-08-26 23:55:34 +00:00
|
|
|
PCCBB_PCIC_IO_RELOC | PCCBB_PCIC_MEM_32},
|
2000-10-18 03:25:13 +00:00
|
|
|
{PCI_DEVICE_ID_PCIC_TI1450, "TI1450 PCI-CardBus Bridge", CB_TI12XX,
|
2001-08-26 23:55:34 +00:00
|
|
|
PCCBB_PCIC_IO_RELOC | PCCBB_PCIC_MEM_32},
|
2000-10-18 03:25:13 +00:00
|
|
|
{PCI_DEVICE_ID_PCIC_TI1451, "TI1451 PCI-CardBus Bridge", CB_TI12XX,
|
2001-08-26 23:55:34 +00:00
|
|
|
PCCBB_PCIC_IO_RELOC | PCCBB_PCIC_MEM_32},
|
2001-11-03 16:45:31 +00:00
|
|
|
{PCI_DEVICE_ID_PCIC_TI4410, "TI4410 PCI-CardBus Bridge", CB_TI12XX,
|
|
|
|
PCCBB_PCIC_IO_RELOC | PCCBB_PCIC_MEM_32},
|
2001-04-18 05:45:15 +00:00
|
|
|
{PCI_DEVICE_ID_PCIC_TI4451, "TI4451 PCI-CardBus Bridge", CB_TI12XX,
|
2001-08-26 23:55:34 +00:00
|
|
|
PCCBB_PCIC_IO_RELOC | PCCBB_PCIC_MEM_32},
|
2000-10-18 03:25:13 +00:00
|
|
|
|
|
|
|
/* Ricoh chips */
|
|
|
|
{PCI_DEVICE_ID_RICOH_RL5C465, "RF5C465 PCI-CardBus Bridge",
|
2001-08-26 23:55:34 +00:00
|
|
|
CB_RF5C46X, PCCBB_PCIC_MEM_32},
|
2000-10-18 03:25:13 +00:00
|
|
|
{PCI_DEVICE_ID_RICOH_RL5C466, "RF5C466 PCI-CardBus Bridge",
|
2001-08-26 23:55:34 +00:00
|
|
|
CB_RF5C46X, PCCBB_PCIC_MEM_32},
|
2000-10-18 03:25:13 +00:00
|
|
|
{PCI_DEVICE_ID_RICOH_RL5C475, "RF5C475 PCI-CardBus Bridge",
|
2001-08-26 23:55:34 +00:00
|
|
|
CB_RF5C47X, PCCBB_PCIC_MEM_32},
|
2000-10-18 03:25:13 +00:00
|
|
|
{PCI_DEVICE_ID_RICOH_RL5C476, "RF5C476 PCI-CardBus Bridge",
|
2001-08-26 23:55:34 +00:00
|
|
|
CB_RF5C47X, PCCBB_PCIC_MEM_32},
|
2000-10-18 03:25:13 +00:00
|
|
|
{PCI_DEVICE_ID_RICOH_RL5C478, "RF5C478 PCI-CardBus Bridge",
|
2001-08-26 23:55:34 +00:00
|
|
|
CB_RF5C47X, PCCBB_PCIC_MEM_32},
|
2000-10-18 03:25:13 +00:00
|
|
|
|
|
|
|
/* Toshiba products */
|
|
|
|
{PCI_DEVICE_ID_TOSHIBA_TOPIC95, "ToPIC95 PCI-CardBus Bridge",
|
2001-08-26 23:55:34 +00:00
|
|
|
CB_TOPIC95, PCCBB_PCIC_MEM_32},
|
2000-10-18 03:25:13 +00:00
|
|
|
{PCI_DEVICE_ID_TOSHIBA_TOPIC95B, "ToPIC95B PCI-CardBus Bridge",
|
2001-08-26 23:55:34 +00:00
|
|
|
CB_TOPIC95B, PCCBB_PCIC_MEM_32},
|
2000-10-18 03:25:13 +00:00
|
|
|
{PCI_DEVICE_ID_TOSHIBA_TOPIC97, "ToPIC97 PCI-CardBus Bridge",
|
2001-08-26 23:55:34 +00:00
|
|
|
CB_TOPIC97, PCCBB_PCIC_MEM_32},
|
2000-10-18 03:25:13 +00:00
|
|
|
{PCI_DEVICE_ID_TOSHIBA_TOPIC100, "ToPIC100 PCI-CardBus Bridge",
|
2001-08-26 23:55:34 +00:00
|
|
|
CB_TOPIC97, PCCBB_PCIC_MEM_32},
|
2000-10-18 03:25:13 +00:00
|
|
|
|
|
|
|
/* Cirrus Logic */
|
|
|
|
{PCI_DEVICE_ID_PCIC_CLPD6832, "CLPD6832 PCI-CardBus Bridge",
|
2001-08-26 23:55:34 +00:00
|
|
|
CB_CIRRUS, PCCBB_PCIC_MEM_32},
|
2000-10-18 03:25:13 +00:00
|
|
|
{PCI_DEVICE_ID_PCIC_CLPD6833, "CLPD6833 PCI-CardBus Bridge",
|
2001-08-26 23:55:34 +00:00
|
|
|
CB_CIRRUS, PCCBB_PCIC_MEM_32},
|
2000-10-18 03:25:13 +00:00
|
|
|
|
2001-04-11 06:40:35 +00:00
|
|
|
/* 02Micro */
|
2001-04-18 05:45:15 +00:00
|
|
|
{PCI_DEVICE_ID_PCIC_OZ6832, "O2Mirco OZ6832/6833 PCI-CardBus Bridge",
|
2001-08-26 23:55:34 +00:00
|
|
|
CB_CIRRUS, PCCBB_PCIC_MEM_32},
|
2001-04-18 05:45:15 +00:00
|
|
|
{PCI_DEVICE_ID_PCIC_OZ6860, "O2Mirco OZ6836/6860 PCI-CardBus Bridge",
|
2001-08-26 23:55:34 +00:00
|
|
|
CB_CIRRUS, PCCBB_PCIC_MEM_32},
|
2001-04-18 05:45:15 +00:00
|
|
|
{PCI_DEVICE_ID_PCIC_OZ6872, "O2Mirco OZ6812/6872 PCI-CardBus Bridge",
|
2001-08-26 23:55:34 +00:00
|
|
|
CB_CIRRUS, PCCBB_PCIC_MEM_32},
|
2001-04-11 06:40:35 +00:00
|
|
|
|
2000-10-18 03:25:13 +00:00
|
|
|
/* sentinel */
|
|
|
|
{0 /* null id */, "unknown",
|
2001-08-26 23:55:34 +00:00
|
|
|
CB_UNKNOWN, 0},
|
2000-10-18 03:25:13 +00:00
|
|
|
};
|
|
|
|
|
2001-11-26 07:17:09 +00:00
|
|
|
/* sysctl vars */
|
|
|
|
SYSCTL_NODE(_hw, OID_AUTO, pccbb, CTLFLAG_RD, 0, "PCCBB parameters");
|
|
|
|
|
|
|
|
/* There's no way to say TUNEABLE_LONG to get the right types */
|
|
|
|
u_long pccbb_start_mem = PCCBB_START_MEM;
|
|
|
|
TUNABLE_INT("hw.pccbb.start_memory", (int *)&pccbb_start_mem);
|
|
|
|
SYSCTL_ULONG(_hw_pccbb, OID_AUTO, start_mem, CTLFLAG_RD,
|
|
|
|
&pccbb_start_mem, PCCBB_START_MEM,
|
|
|
|
"Starting address for memory allocations");
|
|
|
|
|
2002-01-14 02:59:06 +00:00
|
|
|
static int cb_chipset(uint32_t pci_id, const char **namep, int *flagp);
|
2001-08-26 23:55:34 +00:00
|
|
|
static int pccbb_probe(device_t brdev);
|
|
|
|
static void pccbb_chipinit(struct pccbb_softc *sc);
|
|
|
|
static int pccbb_attach(device_t brdev);
|
|
|
|
static int pccbb_detach(device_t brdev);
|
2001-08-27 00:09:42 +00:00
|
|
|
static int pccbb_shutdown(device_t brdev);
|
2001-08-26 23:55:34 +00:00
|
|
|
static void pccbb_driver_added(device_t brdev, driver_t *driver);
|
|
|
|
static void pccbb_child_detached(device_t brdev, device_t child);
|
2001-08-27 00:09:42 +00:00
|
|
|
static int pccbb_card_reprobe(device_t brdev, device_t busdev);
|
2001-08-26 23:55:34 +00:00
|
|
|
static void pccbb_event_thread(void *arg);
|
2001-08-27 00:09:42 +00:00
|
|
|
static void pccbb_create_event_thread(struct pccbb_softc *sc);
|
2001-08-26 23:55:34 +00:00
|
|
|
static void pccbb_start_threads(void *arg);
|
|
|
|
static void pccbb_insert(struct pccbb_softc *sc);
|
|
|
|
static void pccbb_removal(struct pccbb_softc *sc);
|
|
|
|
static void pccbb_intr(void *arg);
|
|
|
|
static int pccbb_detect_voltage(device_t brdev);
|
|
|
|
static int pccbb_power(device_t brdev, int volts);
|
|
|
|
static void pccbb_cardbus_reset(device_t brdev);
|
|
|
|
static int pccbb_cardbus_power_enable_socket(device_t brdev,
|
|
|
|
device_t child);
|
|
|
|
static void pccbb_cardbus_power_disable_socket(device_t brdev,
|
|
|
|
device_t child);
|
2002-01-14 02:59:06 +00:00
|
|
|
static int pccbb_cardbus_io_open(device_t brdev, int win, uint32_t start,
|
|
|
|
uint32_t end);
|
2001-08-26 23:55:34 +00:00
|
|
|
static int pccbb_cardbus_mem_open(device_t brdev, int win,
|
2002-01-14 02:59:06 +00:00
|
|
|
uint32_t start, uint32_t end);
|
2001-08-26 23:55:34 +00:00
|
|
|
static void pccbb_cardbus_auto_open(struct pccbb_softc *sc, int type);
|
|
|
|
static int pccbb_cardbus_activate_resource(device_t brdev, device_t child,
|
2001-08-27 00:09:42 +00:00
|
|
|
int type, int rid, struct resource *res);
|
2001-08-26 23:55:34 +00:00
|
|
|
static int pccbb_cardbus_deactivate_resource(device_t brdev,
|
2001-08-27 00:09:42 +00:00
|
|
|
device_t child, int type, int rid, struct resource *res);
|
|
|
|
static struct resource *pccbb_cardbus_alloc_resource(device_t brdev,
|
2001-08-26 23:55:34 +00:00
|
|
|
device_t child, int type, int *rid, u_long start,
|
2002-01-14 02:59:06 +00:00
|
|
|
u_long end, u_long count, uint flags);
|
2001-08-26 23:55:34 +00:00
|
|
|
static int pccbb_cardbus_release_resource(device_t brdev, device_t child,
|
2001-08-27 00:09:42 +00:00
|
|
|
int type, int rid, struct resource *res);
|
2001-08-26 23:55:34 +00:00
|
|
|
static int pccbb_pcic_power_enable_socket(device_t brdev, device_t child);
|
|
|
|
static void pccbb_pcic_power_disable_socket(device_t brdev, device_t child);
|
|
|
|
static void pccbb_pcic_wait_ready(struct pccbb_softc *sc);
|
|
|
|
static void pccbb_pcic_do_mem_map(struct pccbb_softc *sc, int win);
|
|
|
|
static int pccbb_pcic_mem_map(struct pccbb_softc *sc, int kind,
|
2001-08-27 00:09:42 +00:00
|
|
|
struct resource *res);
|
2001-08-26 23:55:34 +00:00
|
|
|
static void pccbb_pcic_mem_unmap(struct pccbb_softc *sc, int window);
|
2001-08-27 00:09:42 +00:00
|
|
|
static int pccbb_pcic_mem_findmap(struct pccbb_softc *sc,
|
|
|
|
struct resource *res);
|
2001-08-26 23:55:34 +00:00
|
|
|
static void pccbb_pcic_do_io_map(struct pccbb_softc *sc, int win);
|
|
|
|
static int pccbb_pcic_io_map(struct pccbb_softc *sc, int width,
|
2001-08-27 00:09:42 +00:00
|
|
|
struct resource *r);
|
2001-08-26 23:55:34 +00:00
|
|
|
static void pccbb_pcic_io_unmap(struct pccbb_softc *sc, int window);
|
2001-08-27 00:09:42 +00:00
|
|
|
static int pccbb_pcic_io_findmap(struct pccbb_softc *sc,
|
|
|
|
struct resource *res);
|
2001-08-26 23:55:34 +00:00
|
|
|
static int pccbb_pcic_activate_resource(device_t brdev, device_t child,
|
2001-08-27 00:09:42 +00:00
|
|
|
int type, int rid, struct resource *res);
|
2001-08-26 23:55:34 +00:00
|
|
|
static int pccbb_pcic_deactivate_resource(device_t brdev, device_t child,
|
2001-08-27 00:09:42 +00:00
|
|
|
int type, int rid, struct resource *res);
|
|
|
|
static struct resource *pccbb_pcic_alloc_resource(device_t brdev,
|
2001-08-26 23:55:34 +00:00
|
|
|
device_t child, int type, int *rid, u_long start,
|
2002-01-14 02:59:06 +00:00
|
|
|
u_long end, u_long count, uint flags);
|
2001-08-26 23:55:34 +00:00
|
|
|
static int pccbb_pcic_release_resource(device_t brdev, device_t child,
|
|
|
|
int type, int rid, struct resource *res);
|
|
|
|
static int pccbb_pcic_set_res_flags(device_t brdev, device_t child,
|
2002-01-14 02:59:06 +00:00
|
|
|
int type, int rid, uint32_t flags);
|
2001-08-26 23:55:34 +00:00
|
|
|
static int pccbb_pcic_set_memory_offset(device_t brdev, device_t child,
|
2002-01-14 02:59:06 +00:00
|
|
|
int rid, uint32_t cardaddr, uint32_t *deltap);
|
2001-08-26 23:55:34 +00:00
|
|
|
static int pccbb_power_enable_socket(device_t brdev, device_t child);
|
|
|
|
static void pccbb_power_disable_socket(device_t brdev, device_t child);
|
|
|
|
static int pccbb_activate_resource(device_t brdev, device_t child,
|
|
|
|
int type, int rid, struct resource *r);
|
|
|
|
static int pccbb_deactivate_resource(device_t brdev, device_t child,
|
|
|
|
int type, int rid, struct resource *r);
|
2001-08-27 00:09:42 +00:00
|
|
|
static struct resource *pccbb_alloc_resource(device_t brdev, device_t child,
|
|
|
|
int type, int *rid, u_long start, u_long end, u_long count,
|
2002-01-14 02:59:06 +00:00
|
|
|
uint flags);
|
2001-08-26 23:55:34 +00:00
|
|
|
static int pccbb_release_resource(device_t brdev, device_t child,
|
|
|
|
int type, int rid, struct resource *r);
|
|
|
|
static int pccbb_read_ivar(device_t brdev, device_t child, int which,
|
|
|
|
uintptr_t *result);
|
|
|
|
static int pccbb_write_ivar(device_t brdev, device_t child, int which,
|
|
|
|
uintptr_t value);
|
|
|
|
static int pccbb_maxslots(device_t brdev);
|
2002-01-14 02:59:06 +00:00
|
|
|
static uint32_t pccbb_read_config(device_t brdev, int b, int s, int f,
|
2001-08-26 23:55:34 +00:00
|
|
|
int reg, int width);
|
|
|
|
static void pccbb_write_config(device_t brdev, int b, int s, int f,
|
2002-01-14 02:59:06 +00:00
|
|
|
int reg, uint32_t val, int width);
|
|
|
|
|
|
|
|
/*
|
|
|
|
*/
|
|
|
|
static __inline void
|
|
|
|
pccbb_set(struct pccbb_softc *sc, uint32_t reg, uint32_t val)
|
|
|
|
{
|
|
|
|
bus_space_write_4(sc->sc_bst, sc->sc_bsh, reg, val);
|
|
|
|
}
|
|
|
|
|
|
|
|
static __inline uint32_t
|
|
|
|
pccbb_get(struct pccbb_softc *sc, uint32_t reg)
|
|
|
|
{
|
|
|
|
return (bus_space_read_4(sc->sc_bst, sc->sc_bsh, reg));
|
|
|
|
}
|
|
|
|
|
|
|
|
static __inline void
|
|
|
|
pccbb_setb(struct pccbb_softc *sc, uint32_t reg, uint32_t bits)
|
|
|
|
{
|
|
|
|
pccbb_set(sc, reg, pccbb_get(sc, reg) | bits);
|
|
|
|
}
|
|
|
|
|
|
|
|
static __inline void
|
|
|
|
pccbb_clrb(struct pccbb_softc *sc, uint32_t reg, uint32_t bits)
|
|
|
|
{
|
|
|
|
pccbb_set(sc, reg, pccbb_get(sc, reg) & ~bits);
|
|
|
|
}
|
|
|
|
|
|
|
|
static __inline uint8_t
|
|
|
|
pccbb_pcic_read(struct pccbb_softc *sc, uint32_t reg)
|
|
|
|
{
|
|
|
|
return (bus_space_read_1(sc->sc_bst, sc->sc_bsh, 0x800 + reg));
|
|
|
|
}
|
|
|
|
|
|
|
|
static __inline void
|
|
|
|
pccbb_pcic_write(struct pccbb_softc *sc, uint32_t reg, uint8_t val)
|
|
|
|
{
|
|
|
|
return (bus_space_write_1(sc->sc_bst, sc->sc_bsh, 0x800 + reg, val));
|
|
|
|
}
|
|
|
|
#define PCIC_READ(SC,REG) pccbb_pcic_read(SC, REG)
|
|
|
|
#define PCIC_WRITE(SC,REG,VAL) pccbb_pcic_write(SC, REG, VAL)
|
2000-10-18 03:25:13 +00:00
|
|
|
|
|
|
|
/************************************************************************/
|
|
|
|
/* Probe/Attach */
|
|
|
|
/************************************************************************/
|
|
|
|
|
|
|
|
static int
|
2002-01-14 02:59:06 +00:00
|
|
|
cb_chipset(uint32_t pci_id, const char **namep, int *flagp)
|
2000-10-18 03:25:13 +00:00
|
|
|
{
|
|
|
|
int loopend = sizeof(yc_chipsets)/sizeof(yc_chipsets[0]);
|
|
|
|
struct yenta_chipinfo *ycp, *ycend;
|
|
|
|
ycend = yc_chipsets + loopend;
|
|
|
|
|
|
|
|
for (ycp = yc_chipsets; ycp < ycend && pci_id != ycp->yc_id; ++ycp);
|
|
|
|
if (ycp == ycend) {
|
|
|
|
/* not found */
|
|
|
|
ycp = yc_chipsets + loopend - 1; /* to point the sentinel */
|
|
|
|
}
|
|
|
|
if (namep != NULL) {
|
|
|
|
*namep = ycp->yc_name;
|
|
|
|
}
|
|
|
|
if (flagp != NULL) {
|
|
|
|
*flagp = ycp->yc_flags;
|
|
|
|
}
|
2001-11-26 05:42:45 +00:00
|
|
|
return (ycp->yc_chiptype);
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2001-08-26 23:55:34 +00:00
|
|
|
pccbb_probe(device_t brdev)
|
2000-10-18 03:25:13 +00:00
|
|
|
{
|
|
|
|
const char *name;
|
|
|
|
|
2001-08-26 23:55:34 +00:00
|
|
|
if (cb_chipset(pci_get_devid(brdev), &name, NULL) == CB_UNKNOWN)
|
2001-11-26 05:42:45 +00:00
|
|
|
return (ENXIO);
|
2001-08-26 23:55:34 +00:00
|
|
|
device_set_desc(brdev, name);
|
2001-11-26 05:42:45 +00:00
|
|
|
return (0);
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2001-08-26 23:55:34 +00:00
|
|
|
pccbb_chipinit(struct pccbb_softc *sc)
|
2000-10-18 03:25:13 +00:00
|
|
|
{
|
|
|
|
/* Set CardBus latency timer */
|
|
|
|
if (pci_read_config(sc->sc_dev, PCIR_SECLAT_1, 1) < 0x20)
|
|
|
|
pci_write_config(sc->sc_dev, PCIR_SECLAT_1, 0x20, 1);
|
|
|
|
|
|
|
|
/* Set PCI latency timer */
|
|
|
|
if (pci_read_config(sc->sc_dev, PCIR_LATTIMER, 1) < 0x20)
|
|
|
|
pci_write_config(sc->sc_dev, PCIR_LATTIMER, 0x20, 1);
|
|
|
|
|
|
|
|
/* Enable memory access */
|
|
|
|
PCI_MASK_CONFIG(sc->sc_dev, PCIR_COMMAND,
|
2001-08-26 23:55:34 +00:00
|
|
|
| PCIM_CMD_MEMEN
|
|
|
|
| PCIM_CMD_PORTEN
|
|
|
|
| PCIM_CMD_BUSMASTEREN, 2);
|
2000-10-18 03:25:13 +00:00
|
|
|
|
|
|
|
/* disable Legacy IO */
|
|
|
|
switch (sc->sc_chipset) {
|
|
|
|
case CB_RF5C46X:
|
|
|
|
PCI_MASK_CONFIG(sc->sc_dev, PCCBBR_BRIDGECTRL,
|
2001-08-26 23:55:34 +00:00
|
|
|
& ~(PCCBBM_BRIDGECTRL_RL_3E0_EN |
|
|
|
|
PCCBBM_BRIDGECTRL_RL_3E2_EN), 2);
|
2000-10-18 03:25:13 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
pci_write_config(sc->sc_dev, PCCBBR_LEGACY, 0x0, 4);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Use PCI interrupt for interrupt routing */
|
|
|
|
PCI_MASK2_CONFIG(sc->sc_dev, PCCBBR_BRIDGECTRL,
|
2001-08-26 23:55:34 +00:00
|
|
|
& ~(PCCBBM_BRIDGECTRL_MASTER_ABORT |
|
|
|
|
PCCBBM_BRIDGECTRL_INTR_IREQ_EN),
|
|
|
|
| PCCBBM_BRIDGECTRL_WRITE_POST_EN,
|
|
|
|
2);
|
2000-10-18 03:25:13 +00:00
|
|
|
|
2001-08-29 20:33:08 +00:00
|
|
|
/* XXX this should be a function table, ala OLDCARD. */
|
2000-10-18 03:25:13 +00:00
|
|
|
switch (sc->sc_chipset) {
|
|
|
|
case CB_TI113X:
|
2001-08-29 20:33:08 +00:00
|
|
|
/*
|
|
|
|
* The TI 1030, TI 1130 and TI 1131 all require another bit
|
|
|
|
* be set to enable PCI routing of interrupts, and then
|
|
|
|
* a bit for each of the CSC and Function interrupts we
|
|
|
|
* want routed.
|
|
|
|
*/
|
|
|
|
PCI_MASK_CONFIG(sc->sc_dev, PCCBBR_CBCTRL,
|
|
|
|
| PCCBBM_CBCTRL_113X_PCI_INTR |
|
|
|
|
PCCBBM_CBCTRL_113X_PCI_CSC | PCCBBM_CBCTRL_113X_PCI_IRQ_EN,
|
|
|
|
1);
|
2000-10-18 03:25:13 +00:00
|
|
|
PCI_MASK_CONFIG(sc->sc_dev, PCCBBR_DEVCTRL,
|
2001-08-26 23:55:34 +00:00
|
|
|
& ~(PCCBBM_DEVCTRL_INT_SERIAL |
|
|
|
|
PCCBBM_DEVCTRL_INT_PCI), 1);
|
2000-10-18 03:25:13 +00:00
|
|
|
PCIC_WRITE(sc, PCIC_INTR, PCIC_INTR_ENABLE);
|
|
|
|
PCIC_WRITE(sc, PCIC_CSC_INTR, 0);
|
|
|
|
break;
|
|
|
|
case CB_TI12XX:
|
|
|
|
PCIC_WRITE(sc, PCIC_INTR, PCIC_INTR_ENABLE);
|
|
|
|
PCIC_WRITE(sc, PCIC_CSC_INTR, 0);
|
|
|
|
break;
|
|
|
|
case CB_TOPIC95B:
|
|
|
|
PCI_MASK_CONFIG(sc->sc_dev, PCCBBR_TOPIC_SOCKETCTRL,
|
2001-08-26 23:55:34 +00:00
|
|
|
| PCCBBM_TOPIC_SOCKETCTRL_SCR_IRQSEL, 4);
|
2000-10-18 03:25:13 +00:00
|
|
|
PCI_MASK2_CONFIG(sc->sc_dev, PCCBBR_TOPIC_SLOTCTRL,
|
2001-08-26 23:55:34 +00:00
|
|
|
| PCCBBM_TOPIC_SLOTCTRL_SLOTON |
|
|
|
|
PCCBBM_TOPIC_SLOTCTRL_SLOTEN |
|
|
|
|
PCCBBM_TOPIC_SLOTCTRL_ID_LOCK |
|
|
|
|
PCCBBM_TOPIC_SLOTCTRL_CARDBUS,
|
|
|
|
& ~PCCBBM_TOPIC_SLOTCTRL_SWDETECT, 4);
|
2000-10-18 03:25:13 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* close all memory and io windows */
|
|
|
|
pci_write_config(sc->sc_dev, PCCBBR_MEMBASE0, 0xffffffff, 4);
|
|
|
|
pci_write_config(sc->sc_dev, PCCBBR_MEMLIMIT0, 0, 4);
|
|
|
|
pci_write_config(sc->sc_dev, PCCBBR_MEMBASE1, 0xffffffff, 4);
|
|
|
|
pci_write_config(sc->sc_dev, PCCBBR_MEMLIMIT1, 0, 4);
|
|
|
|
pci_write_config(sc->sc_dev, PCCBBR_IOBASE0, 0xffffffff, 4);
|
|
|
|
pci_write_config(sc->sc_dev, PCCBBR_IOLIMIT0, 0, 4);
|
|
|
|
pci_write_config(sc->sc_dev, PCCBBR_IOBASE1, 0xffffffff, 4);
|
|
|
|
pci_write_config(sc->sc_dev, PCCBBR_IOLIMIT1, 0, 4);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2001-08-26 23:55:34 +00:00
|
|
|
pccbb_attach(device_t brdev)
|
2000-10-18 03:25:13 +00:00
|
|
|
{
|
2001-08-26 23:55:34 +00:00
|
|
|
struct pccbb_softc *sc = (struct pccbb_softc *)device_get_softc(brdev);
|
2000-10-18 03:25:13 +00:00
|
|
|
int rid;
|
2002-01-14 02:59:06 +00:00
|
|
|
uint32_t sockbase;
|
2001-11-26 05:42:45 +00:00
|
|
|
struct pccbb_sclist *sclist;
|
2000-10-18 03:25:13 +00:00
|
|
|
|
|
|
|
if (!softcs_init) {
|
|
|
|
softcs_init = 1;
|
|
|
|
STAILQ_INIT(&softcs);
|
|
|
|
}
|
2001-08-26 23:55:34 +00:00
|
|
|
mtx_init(&sc->sc_mtx, device_get_nameunit(brdev), MTX_DEF);
|
|
|
|
sc->sc_chipset = cb_chipset(pci_get_devid(brdev), NULL, &sc->sc_flags);
|
|
|
|
sc->sc_dev = brdev;
|
2000-10-18 03:25:13 +00:00
|
|
|
sc->sc_cbdev = NULL;
|
|
|
|
sc->sc_pccarddev = NULL;
|
2001-08-26 23:55:34 +00:00
|
|
|
sc->sc_secbus = pci_read_config(brdev, PCIR_SECBUS_2, 1);
|
|
|
|
sc->sc_subbus = pci_read_config(brdev, PCIR_SUBBUS_2, 1);
|
2000-10-18 03:25:13 +00:00
|
|
|
sc->memalloc = 0;
|
|
|
|
sc->ioalloc = 0;
|
|
|
|
SLIST_INIT(&sc->rl);
|
|
|
|
|
|
|
|
/* Ths PCI bus should have given me memory... right? */
|
2001-06-20 06:24:28 +00:00
|
|
|
rid=PCCBBR_SOCKBASE;
|
2001-08-26 23:55:34 +00:00
|
|
|
sc->sc_base_res=bus_alloc_resource(brdev, SYS_RES_MEMORY, &rid,
|
|
|
|
0,~0,1, RF_ACTIVE);
|
2001-06-20 06:24:28 +00:00
|
|
|
if (!sc->sc_base_res) {
|
2000-10-18 03:25:13 +00:00
|
|
|
/*
|
2001-08-26 23:55:34 +00:00
|
|
|
* XXX EVILE HACK BAD THING! XXX
|
2000-10-20 20:29:59 +00:00
|
|
|
* The pci bus device should do this for us.
|
2000-10-18 03:25:13 +00:00
|
|
|
* Some BIOSes doesn't assign a memory space properly.
|
|
|
|
* So we try to manually put one in...
|
|
|
|
*/
|
2001-08-26 23:55:34 +00:00
|
|
|
sockbase = pci_read_config(brdev, rid, 4);
|
2000-10-18 03:25:13 +00:00
|
|
|
if (sockbase < 0x100000 || sockbase >= 0xfffffff0) {
|
2001-08-26 23:55:34 +00:00
|
|
|
pci_write_config(brdev, rid, 0xffffffff, 4);
|
|
|
|
sockbase = pci_read_config(brdev, rid, 4);
|
2000-10-18 03:25:13 +00:00
|
|
|
sockbase = (sockbase & 0xfffffff0) &
|
2001-08-26 23:55:34 +00:00
|
|
|
-(sockbase & 0xfffffff0);
|
2001-06-20 06:24:28 +00:00
|
|
|
sc->sc_base_res = bus_generic_alloc_resource(
|
2001-08-26 23:55:34 +00:00
|
|
|
device_get_parent(brdev), brdev, SYS_RES_MEMORY,
|
2001-11-26 07:17:09 +00:00
|
|
|
&rid, pccbb_start_mem, ~0, sockbase,
|
2001-08-26 23:55:34 +00:00
|
|
|
RF_ACTIVE|rman_make_alignment_flags(sockbase));
|
2001-06-20 06:24:28 +00:00
|
|
|
if (!sc->sc_base_res){
|
2001-08-26 23:55:34 +00:00
|
|
|
device_printf(brdev,
|
|
|
|
"Could not grab register memory\n");
|
2000-11-28 00:05:20 +00:00
|
|
|
mtx_destroy(&sc->sc_mtx);
|
2001-11-26 05:42:45 +00:00
|
|
|
return (ENOMEM);
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
2001-08-26 23:55:34 +00:00
|
|
|
pci_write_config(brdev, PCCBBR_SOCKBASE,
|
|
|
|
rman_get_start(sc->sc_base_res), 4);
|
|
|
|
DEVPRINTF((brdev, "PCI Memory allocated: %08lx\n",
|
|
|
|
rman_get_start(sc->sc_base_res)));
|
2000-10-18 03:25:13 +00:00
|
|
|
} else {
|
2001-08-26 23:55:34 +00:00
|
|
|
device_printf(brdev, "Could not map register memory\n");
|
2000-11-28 00:05:20 +00:00
|
|
|
mtx_destroy(&sc->sc_mtx);
|
2001-11-26 05:42:45 +00:00
|
|
|
return (ENOMEM);
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-01-14 02:59:06 +00:00
|
|
|
sc->sc_bst = rman_get_bustag(sc->sc_base_res);
|
|
|
|
sc->sc_bsh = rman_get_bushandle(sc->sc_base_res);
|
2000-10-18 03:25:13 +00:00
|
|
|
pccbb_chipinit(sc);
|
|
|
|
|
|
|
|
/* CSC Interrupt: Card detect interrupt on */
|
2002-01-14 02:59:06 +00:00
|
|
|
pccbb_setb(sc, PCCBB_SOCKET_MASK, PCCBB_SOCKET_MASK_CD);
|
2000-10-18 03:25:13 +00:00
|
|
|
|
|
|
|
/* reset interrupt */
|
2002-01-14 02:59:06 +00:00
|
|
|
pccbb_set(sc, PCCBB_SOCKET_EVENT, pccbb_get(sc, PCCBB_SOCKET_EVENT));
|
2000-10-18 03:25:13 +00:00
|
|
|
|
|
|
|
/* Map and establish the interrupt. */
|
2001-06-20 06:24:28 +00:00
|
|
|
rid=0;
|
2001-08-26 23:55:34 +00:00
|
|
|
sc->sc_irq_res=bus_alloc_resource(brdev, SYS_RES_IRQ, &rid, 0, ~0, 1,
|
|
|
|
RF_SHAREABLE | RF_ACTIVE);
|
|
|
|
if (sc->sc_irq_res == NULL) {
|
2000-10-18 03:25:13 +00:00
|
|
|
printf("pccbb: Unable to map IRQ...\n");
|
2001-08-26 23:55:34 +00:00
|
|
|
bus_release_resource(brdev, SYS_RES_MEMORY, PCCBBR_SOCKBASE,
|
|
|
|
sc->sc_base_res);
|
2000-11-28 00:05:20 +00:00
|
|
|
mtx_destroy(&sc->sc_mtx);
|
2001-11-26 05:42:45 +00:00
|
|
|
return (ENOMEM);
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
|
|
|
|
2001-08-26 23:55:34 +00:00
|
|
|
if (bus_setup_intr(brdev, sc->sc_irq_res, INTR_TYPE_BIO, pccbb_intr, sc,
|
|
|
|
&(sc->sc_intrhand))) {
|
|
|
|
device_printf(brdev, "couldn't establish interrupt");
|
|
|
|
bus_release_resource(brdev, SYS_RES_IRQ, 0, sc->sc_irq_res);
|
|
|
|
bus_release_resource(brdev, SYS_RES_MEMORY, PCCBBR_SOCKBASE,
|
|
|
|
sc->sc_base_res);
|
2000-11-28 00:05:20 +00:00
|
|
|
mtx_destroy(&sc->sc_mtx);
|
2001-11-26 05:42:45 +00:00
|
|
|
return (ENOMEM);
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* attach children */
|
2001-08-26 23:55:34 +00:00
|
|
|
sc->sc_cbdev = device_add_child(brdev, "cardbus", -1);
|
2001-06-20 06:24:28 +00:00
|
|
|
if (sc->sc_cbdev == NULL)
|
2001-08-26 23:55:34 +00:00
|
|
|
DEVPRINTF((brdev, "WARNING: cannot add cardbus bus.\n"));
|
2001-06-20 06:24:28 +00:00
|
|
|
else if (device_probe_and_attach(sc->sc_cbdev) != 0) {
|
2001-08-26 23:55:34 +00:00
|
|
|
DEVPRINTF((brdev, "WARNING: cannot attach cardbus bus!\n"));
|
2000-10-18 03:25:13 +00:00
|
|
|
sc->sc_cbdev = NULL;
|
|
|
|
}
|
|
|
|
|
2001-08-26 23:55:34 +00:00
|
|
|
sc->sc_pccarddev = device_add_child(brdev, "pccard", -1);
|
2001-06-20 06:24:28 +00:00
|
|
|
if (sc->sc_pccarddev == NULL)
|
2001-08-26 23:55:34 +00:00
|
|
|
DEVPRINTF((brdev, "WARNING: cannot add pccard bus.\n"));
|
2001-06-20 06:24:28 +00:00
|
|
|
else if (device_probe_and_attach(sc->sc_pccarddev) != 0) {
|
2001-08-26 23:55:34 +00:00
|
|
|
DEVPRINTF((brdev, "WARNING: cannot attach pccard bus.\n"));
|
2000-10-18 03:25:13 +00:00
|
|
|
sc->sc_pccarddev = NULL;
|
|
|
|
}
|
|
|
|
|
2001-06-20 06:24:28 +00:00
|
|
|
#ifndef KLD_MODULE
|
2000-10-18 03:25:13 +00:00
|
|
|
if (sc->sc_cbdev == NULL && sc->sc_pccarddev == NULL) {
|
2001-08-26 23:55:34 +00:00
|
|
|
device_printf(brdev,
|
|
|
|
"ERROR: Failed to attach cardbus/pccard bus!\n");
|
|
|
|
bus_teardown_intr(brdev, sc->sc_irq_res, sc->sc_intrhand);
|
|
|
|
bus_release_resource(brdev, SYS_RES_IRQ, 0, sc->sc_irq_res);
|
|
|
|
bus_release_resource(brdev, SYS_RES_MEMORY, PCCBBR_SOCKBASE,
|
|
|
|
sc->sc_base_res);
|
2000-11-28 00:05:20 +00:00
|
|
|
mtx_destroy(&sc->sc_mtx);
|
2001-11-26 05:42:45 +00:00
|
|
|
return (ENOMEM);
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
2001-06-20 06:24:28 +00:00
|
|
|
#endif
|
|
|
|
|
2001-11-26 05:42:45 +00:00
|
|
|
sclist = malloc(sizeof(struct pccbb_sclist), M_DEVBUF, M_WAITOK);
|
|
|
|
sclist->sc = sc;
|
|
|
|
STAILQ_INSERT_TAIL(&softcs, sclist, entries);
|
|
|
|
return (0);
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
|
|
|
|
2000-11-28 00:05:20 +00:00
|
|
|
static int
|
2001-08-26 23:55:34 +00:00
|
|
|
pccbb_detach(device_t brdev)
|
2000-11-28 00:05:20 +00:00
|
|
|
{
|
2001-08-26 23:55:34 +00:00
|
|
|
struct pccbb_softc *sc = device_get_softc(brdev);
|
2000-11-28 00:05:20 +00:00
|
|
|
int numdevs;
|
|
|
|
device_t *devlist;
|
|
|
|
int tmp;
|
|
|
|
int error;
|
|
|
|
|
2001-08-26 23:55:34 +00:00
|
|
|
device_get_children(brdev, &devlist, &numdevs);
|
2000-11-28 00:05:20 +00:00
|
|
|
|
|
|
|
error = 0;
|
|
|
|
for (tmp = 0; tmp < numdevs; tmp++) {
|
|
|
|
if (device_detach(devlist[tmp]) == 0)
|
2001-08-26 23:55:34 +00:00
|
|
|
device_delete_child(brdev, devlist[tmp]);
|
2000-11-28 00:05:20 +00:00
|
|
|
else
|
|
|
|
error++;
|
|
|
|
}
|
2001-02-08 22:14:27 +00:00
|
|
|
free(devlist, M_TEMP);
|
2000-11-28 00:05:20 +00:00
|
|
|
if (error > 0)
|
2001-11-26 05:42:45 +00:00
|
|
|
return (ENXIO);
|
2000-11-28 00:05:20 +00:00
|
|
|
|
Change and clean the mutex lock interface.
mtx_enter(lock, type) becomes:
mtx_lock(lock) for sleep locks (MTX_DEF-initialized locks)
mtx_lock_spin(lock) for spin locks (MTX_SPIN-initialized)
similarily, for releasing a lock, we now have:
mtx_unlock(lock) for MTX_DEF and mtx_unlock_spin(lock) for MTX_SPIN.
We change the caller interface for the two different types of locks
because the semantics are entirely different for each case, and this
makes it explicitly clear and, at the same time, it rids us of the
extra `type' argument.
The enter->lock and exit->unlock change has been made with the idea
that we're "locking data" and not "entering locked code" in mind.
Further, remove all additional "flags" previously passed to the
lock acquire/release routines with the exception of two:
MTX_QUIET and MTX_NOSWITCH
The functionality of these flags is preserved and they can be passed
to the lock/unlock routines by calling the corresponding wrappers:
mtx_{lock, unlock}_flags(lock, flag(s)) and
mtx_{lock, unlock}_spin_flags(lock, flag(s)) for MTX_DEF and MTX_SPIN
locks, respectively.
Re-inline some lock acq/rel code; in the sleep lock case, we only
inline the _obtain_lock()s in order to ensure that the inlined code
fits into a cache line. In the spin lock case, we inline recursion and
actually only perform a function call if we need to spin. This change
has been made with the idea that we generally tend to avoid spin locks
and that also the spin locks that we do have and are heavily used
(i.e. sched_lock) do recurse, and therefore in an effort to reduce
function call overhead for some architectures (such as alpha), we
inline recursion for this case.
Create a new malloc type for the witness code and retire from using
the M_DEV type. The new type is called M_WITNESS and is only declared
if WITNESS is enabled.
Begin cleaning up some machdep/mutex.h code - specifically updated the
"optimized" inlined code in alpha/mutex.h and wrote MTX_LOCK_SPIN
and MTX_UNLOCK_SPIN asm macros for the i386/mutex.h as we presently
need those.
Finally, caught up to the interface changes in all sys code.
Contributors: jake, jhb, jasone (in no particular order)
2001-02-09 06:11:45 +00:00
|
|
|
mtx_lock(&sc->sc_mtx);
|
2001-08-26 23:55:34 +00:00
|
|
|
bus_teardown_intr(brdev, sc->sc_irq_res, sc->sc_intrhand);
|
2000-11-28 00:05:20 +00:00
|
|
|
|
|
|
|
sc->sc_flags |= PCCBB_KTHREAD_DONE;
|
|
|
|
if (sc->sc_flags & PCCBB_KTHREAD_RUNNING) {
|
|
|
|
wakeup(sc);
|
Change and clean the mutex lock interface.
mtx_enter(lock, type) becomes:
mtx_lock(lock) for sleep locks (MTX_DEF-initialized locks)
mtx_lock_spin(lock) for spin locks (MTX_SPIN-initialized)
similarily, for releasing a lock, we now have:
mtx_unlock(lock) for MTX_DEF and mtx_unlock_spin(lock) for MTX_SPIN.
We change the caller interface for the two different types of locks
because the semantics are entirely different for each case, and this
makes it explicitly clear and, at the same time, it rids us of the
extra `type' argument.
The enter->lock and exit->unlock change has been made with the idea
that we're "locking data" and not "entering locked code" in mind.
Further, remove all additional "flags" previously passed to the
lock acquire/release routines with the exception of two:
MTX_QUIET and MTX_NOSWITCH
The functionality of these flags is preserved and they can be passed
to the lock/unlock routines by calling the corresponding wrappers:
mtx_{lock, unlock}_flags(lock, flag(s)) and
mtx_{lock, unlock}_spin_flags(lock, flag(s)) for MTX_DEF and MTX_SPIN
locks, respectively.
Re-inline some lock acq/rel code; in the sleep lock case, we only
inline the _obtain_lock()s in order to ensure that the inlined code
fits into a cache line. In the spin lock case, we inline recursion and
actually only perform a function call if we need to spin. This change
has been made with the idea that we generally tend to avoid spin locks
and that also the spin locks that we do have and are heavily used
(i.e. sched_lock) do recurse, and therefore in an effort to reduce
function call overhead for some architectures (such as alpha), we
inline recursion for this case.
Create a new malloc type for the witness code and retire from using
the M_DEV type. The new type is called M_WITNESS and is only declared
if WITNESS is enabled.
Begin cleaning up some machdep/mutex.h code - specifically updated the
"optimized" inlined code in alpha/mutex.h and wrote MTX_LOCK_SPIN
and MTX_UNLOCK_SPIN asm macros for the i386/mutex.h as we presently
need those.
Finally, caught up to the interface changes in all sys code.
Contributors: jake, jhb, jasone (in no particular order)
2001-02-09 06:11:45 +00:00
|
|
|
mtx_unlock(&sc->sc_mtx);
|
2001-08-26 23:55:34 +00:00
|
|
|
DEVPRINTF((brdev, "waiting for kthread exit..."));
|
2000-11-28 00:05:20 +00:00
|
|
|
error = tsleep(sc, PWAIT, "pccbb-detach-wait", 60 * hz);
|
|
|
|
if (error)
|
|
|
|
DPRINTF(("timeout\n"));
|
|
|
|
else
|
|
|
|
DPRINTF(("done\n"));
|
2001-11-26 05:42:45 +00:00
|
|
|
} else {
|
Change and clean the mutex lock interface.
mtx_enter(lock, type) becomes:
mtx_lock(lock) for sleep locks (MTX_DEF-initialized locks)
mtx_lock_spin(lock) for spin locks (MTX_SPIN-initialized)
similarily, for releasing a lock, we now have:
mtx_unlock(lock) for MTX_DEF and mtx_unlock_spin(lock) for MTX_SPIN.
We change the caller interface for the two different types of locks
because the semantics are entirely different for each case, and this
makes it explicitly clear and, at the same time, it rids us of the
extra `type' argument.
The enter->lock and exit->unlock change has been made with the idea
that we're "locking data" and not "entering locked code" in mind.
Further, remove all additional "flags" previously passed to the
lock acquire/release routines with the exception of two:
MTX_QUIET and MTX_NOSWITCH
The functionality of these flags is preserved and they can be passed
to the lock/unlock routines by calling the corresponding wrappers:
mtx_{lock, unlock}_flags(lock, flag(s)) and
mtx_{lock, unlock}_spin_flags(lock, flag(s)) for MTX_DEF and MTX_SPIN
locks, respectively.
Re-inline some lock acq/rel code; in the sleep lock case, we only
inline the _obtain_lock()s in order to ensure that the inlined code
fits into a cache line. In the spin lock case, we inline recursion and
actually only perform a function call if we need to spin. This change
has been made with the idea that we generally tend to avoid spin locks
and that also the spin locks that we do have and are heavily used
(i.e. sched_lock) do recurse, and therefore in an effort to reduce
function call overhead for some architectures (such as alpha), we
inline recursion for this case.
Create a new malloc type for the witness code and retire from using
the M_DEV type. The new type is called M_WITNESS and is only declared
if WITNESS is enabled.
Begin cleaning up some machdep/mutex.h code - specifically updated the
"optimized" inlined code in alpha/mutex.h and wrote MTX_LOCK_SPIN
and MTX_UNLOCK_SPIN asm macros for the i386/mutex.h as we presently
need those.
Finally, caught up to the interface changes in all sys code.
Contributors: jake, jhb, jasone (in no particular order)
2001-02-09 06:11:45 +00:00
|
|
|
mtx_unlock(&sc->sc_mtx);
|
2001-11-26 05:42:45 +00:00
|
|
|
}
|
2000-11-28 00:05:20 +00:00
|
|
|
|
2001-08-26 23:55:34 +00:00
|
|
|
bus_release_resource(brdev, SYS_RES_IRQ, 0, sc->sc_irq_res);
|
|
|
|
bus_release_resource(brdev, SYS_RES_MEMORY, PCCBBR_SOCKBASE,
|
|
|
|
sc->sc_base_res);
|
2000-11-28 00:05:20 +00:00
|
|
|
mtx_destroy(&sc->sc_mtx);
|
2001-11-26 05:42:45 +00:00
|
|
|
return (0);
|
2000-11-28 00:05:20 +00:00
|
|
|
}
|
|
|
|
|
2001-08-27 00:09:42 +00:00
|
|
|
static int
|
|
|
|
pccbb_shutdown(device_t brdev)
|
|
|
|
{
|
|
|
|
struct pccbb_softc *sc = (struct pccbb_softc *)device_get_softc(brdev);
|
|
|
|
/* properly reset everything at shutdown */
|
|
|
|
|
|
|
|
PCI_MASK_CONFIG(brdev, PCCBBR_BRIDGECTRL, |PCCBBM_BRIDGECTRL_RESET, 2);
|
|
|
|
PCIC_MASK(sc, PCIC_INTR, & ~PCIC_INTR_RESET);
|
|
|
|
|
2002-01-14 02:59:06 +00:00
|
|
|
pccbb_set(sc, PCCBB_SOCKET_MASK, 0);
|
2001-08-27 00:09:42 +00:00
|
|
|
|
|
|
|
pccbb_power(brdev, CARD_VCC_0V | CARD_VPP_0V);
|
|
|
|
|
|
|
|
PCIC_WRITE(sc, PCIC_ADDRWIN_ENABLE, 0);
|
|
|
|
pci_write_config(brdev, PCCBBR_MEMBASE0, 0, 4);
|
|
|
|
pci_write_config(brdev, PCCBBR_MEMLIMIT0, 0, 4);
|
|
|
|
pci_write_config(brdev, PCCBBR_MEMBASE1, 0, 4);
|
|
|
|
pci_write_config(brdev, PCCBBR_MEMLIMIT1, 0, 4);
|
|
|
|
pci_write_config(brdev, PCCBBR_IOBASE0, 0, 4);
|
|
|
|
pci_write_config(brdev, PCCBBR_IOLIMIT0, 0, 4);
|
|
|
|
pci_write_config(brdev, PCCBBR_IOBASE1, 0, 4);
|
|
|
|
pci_write_config(brdev, PCCBBR_IOLIMIT1, 0, 4);
|
|
|
|
pci_write_config(brdev, PCIR_COMMAND, 0, 2);
|
2001-11-26 05:42:45 +00:00
|
|
|
return (0);
|
2001-08-27 00:09:42 +00:00
|
|
|
}
|
|
|
|
|
2000-11-28 00:05:20 +00:00
|
|
|
static void
|
2001-08-26 23:55:34 +00:00
|
|
|
pccbb_driver_added(device_t brdev, driver_t *driver)
|
2000-11-28 00:05:20 +00:00
|
|
|
{
|
2001-08-26 23:55:34 +00:00
|
|
|
struct pccbb_softc *sc = device_get_softc(brdev);
|
2000-11-28 00:05:20 +00:00
|
|
|
device_t *devlist;
|
|
|
|
int tmp;
|
|
|
|
int numdevs;
|
2001-08-27 00:09:42 +00:00
|
|
|
int wake;
|
2002-01-14 02:59:06 +00:00
|
|
|
uint32_t sockstate;
|
2001-01-06 18:04:55 +00:00
|
|
|
|
2001-08-26 23:55:34 +00:00
|
|
|
DEVICE_IDENTIFY(driver, brdev);
|
|
|
|
device_get_children(brdev, &devlist, &numdevs);
|
2001-08-27 00:09:42 +00:00
|
|
|
wake = 0;
|
2002-01-14 02:59:06 +00:00
|
|
|
sockstate = pccbb_get(sc, PCCBB_SOCKET_STATE);
|
2000-11-28 00:05:20 +00:00
|
|
|
for (tmp = 0; tmp < numdevs; tmp++) {
|
|
|
|
if (device_get_state(devlist[tmp]) == DS_NOTPRESENT &&
|
|
|
|
device_probe_and_attach(devlist[tmp]) == 0) {
|
|
|
|
if (devlist[tmp] == NULL)
|
|
|
|
/* NOTHING */;
|
2001-01-06 18:04:55 +00:00
|
|
|
else if (strcmp(driver->name, "cardbus") == 0) {
|
2000-11-28 00:05:20 +00:00
|
|
|
sc->sc_cbdev = devlist[tmp];
|
2001-08-27 00:09:42 +00:00
|
|
|
if (((sockstate & PCCBB_SOCKET_STAT_CD) == 0) &&
|
|
|
|
(sockstate & PCCBB_SOCKET_STAT_CB))
|
|
|
|
wake++;
|
2001-01-06 18:04:55 +00:00
|
|
|
} else if (strcmp(driver->name, "pccard") == 0) {
|
2000-11-28 00:05:20 +00:00
|
|
|
sc->sc_pccarddev = devlist[tmp];
|
2001-08-27 00:09:42 +00:00
|
|
|
if (((sockstate & PCCBB_SOCKET_STAT_CD) == 0) &&
|
|
|
|
(sockstate & PCCBB_SOCKET_STAT_16BIT))
|
|
|
|
wake++;
|
2001-01-06 18:04:55 +00:00
|
|
|
} else
|
2001-08-26 23:55:34 +00:00
|
|
|
device_printf(brdev,
|
|
|
|
"Unsupported child bus: %s\n",
|
|
|
|
driver->name);
|
2000-11-28 00:05:20 +00:00
|
|
|
}
|
|
|
|
}
|
2001-02-08 22:14:27 +00:00
|
|
|
free(devlist, M_TEMP);
|
2001-08-27 00:09:42 +00:00
|
|
|
|
|
|
|
if (wake > 0) {
|
2002-01-14 02:59:06 +00:00
|
|
|
if ((pccbb_get(sc, PCCBB_SOCKET_STATE) & PCCBB_SOCKET_STAT_CD)
|
|
|
|
== 0) {
|
2001-08-27 00:09:42 +00:00
|
|
|
mtx_lock(&sc->sc_mtx);
|
|
|
|
wakeup(sc);
|
|
|
|
mtx_unlock(&sc->sc_mtx);
|
|
|
|
}
|
|
|
|
}
|
2000-11-28 00:05:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2001-08-26 23:55:34 +00:00
|
|
|
pccbb_child_detached(device_t brdev, device_t child)
|
2000-11-28 00:05:20 +00:00
|
|
|
{
|
2001-08-26 23:55:34 +00:00
|
|
|
struct pccbb_softc *sc = device_get_softc(brdev);
|
2001-11-26 05:42:45 +00:00
|
|
|
|
2000-11-28 00:05:20 +00:00
|
|
|
if (child == sc->sc_cbdev)
|
|
|
|
sc->sc_cbdev = NULL;
|
|
|
|
else if (child == sc->sc_pccarddev)
|
|
|
|
sc->sc_pccarddev = NULL;
|
|
|
|
else
|
2001-08-26 23:55:34 +00:00
|
|
|
device_printf(brdev, "Unknown child detached: %s %p/%p\n",
|
|
|
|
device_get_nameunit(child), sc->sc_cbdev, sc->sc_pccarddev);
|
2000-11-28 00:05:20 +00:00
|
|
|
}
|
|
|
|
|
2001-08-27 00:09:42 +00:00
|
|
|
static int
|
2001-11-26 05:42:45 +00:00
|
|
|
pccbb_card_reprobe(device_t brdev, device_t busdev)
|
|
|
|
{
|
2001-08-27 00:09:42 +00:00
|
|
|
struct pccbb_softc *sc = device_get_softc(brdev);
|
|
|
|
int wake = 0;
|
2002-01-14 02:59:06 +00:00
|
|
|
uint32_t sockstate;
|
2001-08-27 00:09:42 +00:00
|
|
|
|
2002-01-14 02:59:06 +00:00
|
|
|
sockstate = pccbb_get(sc, PCCBB_SOCKET_STATE);
|
2001-08-27 00:09:42 +00:00
|
|
|
|
|
|
|
if ((sockstate & PCCBB_SOCKET_STAT_CD) == 0) {
|
|
|
|
if (busdev == sc->sc_cbdev &&
|
|
|
|
(sockstate & PCCBB_SOCKET_STAT_CB))
|
|
|
|
wake++;
|
|
|
|
else if (busdev == sc->sc_pccarddev &&
|
|
|
|
(sockstate & PCCBB_SOCKET_STAT_16BIT))
|
|
|
|
wake++;
|
|
|
|
|
|
|
|
if (wake > 0) {
|
|
|
|
mtx_lock(&sc->sc_mtx);
|
|
|
|
wakeup(sc);
|
|
|
|
mtx_unlock(&sc->sc_mtx);
|
2001-11-26 05:42:45 +00:00
|
|
|
return (0);
|
2001-08-27 00:09:42 +00:00
|
|
|
}
|
2001-11-26 05:42:45 +00:00
|
|
|
return (EBUSY);
|
2001-08-27 00:09:42 +00:00
|
|
|
}
|
2001-11-26 05:42:45 +00:00
|
|
|
return (ENOENT);
|
2001-08-27 00:09:42 +00:00
|
|
|
}
|
|
|
|
|
2000-10-18 03:25:13 +00:00
|
|
|
/************************************************************************/
|
|
|
|
/* Kthreads */
|
|
|
|
/************************************************************************/
|
|
|
|
|
|
|
|
static void
|
2001-08-26 23:55:34 +00:00
|
|
|
pccbb_event_thread(void *arg)
|
2000-10-18 03:25:13 +00:00
|
|
|
{
|
|
|
|
struct pccbb_softc *sc = arg;
|
2002-01-14 02:59:06 +00:00
|
|
|
uint32_t status;
|
2000-10-18 03:25:13 +00:00
|
|
|
|
Change and clean the mutex lock interface.
mtx_enter(lock, type) becomes:
mtx_lock(lock) for sleep locks (MTX_DEF-initialized locks)
mtx_lock_spin(lock) for spin locks (MTX_SPIN-initialized)
similarily, for releasing a lock, we now have:
mtx_unlock(lock) for MTX_DEF and mtx_unlock_spin(lock) for MTX_SPIN.
We change the caller interface for the two different types of locks
because the semantics are entirely different for each case, and this
makes it explicitly clear and, at the same time, it rids us of the
extra `type' argument.
The enter->lock and exit->unlock change has been made with the idea
that we're "locking data" and not "entering locked code" in mind.
Further, remove all additional "flags" previously passed to the
lock acquire/release routines with the exception of two:
MTX_QUIET and MTX_NOSWITCH
The functionality of these flags is preserved and they can be passed
to the lock/unlock routines by calling the corresponding wrappers:
mtx_{lock, unlock}_flags(lock, flag(s)) and
mtx_{lock, unlock}_spin_flags(lock, flag(s)) for MTX_DEF and MTX_SPIN
locks, respectively.
Re-inline some lock acq/rel code; in the sleep lock case, we only
inline the _obtain_lock()s in order to ensure that the inlined code
fits into a cache line. In the spin lock case, we inline recursion and
actually only perform a function call if we need to spin. This change
has been made with the idea that we generally tend to avoid spin locks
and that also the spin locks that we do have and are heavily used
(i.e. sched_lock) do recurse, and therefore in an effort to reduce
function call overhead for some architectures (such as alpha), we
inline recursion for this case.
Create a new malloc type for the witness code and retire from using
the M_DEV type. The new type is called M_WITNESS and is only declared
if WITNESS is enabled.
Begin cleaning up some machdep/mutex.h code - specifically updated the
"optimized" inlined code in alpha/mutex.h and wrote MTX_LOCK_SPIN
and MTX_UNLOCK_SPIN asm macros for the i386/mutex.h as we presently
need those.
Finally, caught up to the interface changes in all sys code.
Contributors: jake, jhb, jasone (in no particular order)
2001-02-09 06:11:45 +00:00
|
|
|
mtx_lock(&Giant);
|
2000-10-18 03:25:13 +00:00
|
|
|
for(;;) {
|
2001-11-26 05:42:45 +00:00
|
|
|
if (!(sc->sc_flags & PCCBB_KTHREAD_RUNNING)) {
|
2000-11-28 00:05:20 +00:00
|
|
|
sc->sc_flags |= PCCBB_KTHREAD_RUNNING;
|
2001-11-26 05:42:45 +00:00
|
|
|
} else {
|
2000-10-18 03:25:13 +00:00
|
|
|
tsleep (sc, PWAIT, "pccbbev", 0);
|
|
|
|
/*
|
2000-11-28 00:05:20 +00:00
|
|
|
* Delay 1 second, make sure the user is done with
|
|
|
|
* whatever he is doing. We tsleep on sc->sc_flags,
|
|
|
|
* which should never be woken up.
|
2001-08-27 01:30:46 +00:00
|
|
|
*
|
|
|
|
* XXX Note: This can cause problems on card
|
|
|
|
* removal. See OLDCARD's ISR for how you may
|
|
|
|
* have to deal with the debouncing problem. The
|
|
|
|
* crux of the issue is interrupts delivered to
|
|
|
|
* the card after eject are unstable.
|
2000-10-18 03:25:13 +00:00
|
|
|
*/
|
2000-11-28 00:05:20 +00:00
|
|
|
tsleep (&sc->sc_flags, PWAIT, "pccbbev", 1*hz);
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
Change and clean the mutex lock interface.
mtx_enter(lock, type) becomes:
mtx_lock(lock) for sleep locks (MTX_DEF-initialized locks)
mtx_lock_spin(lock) for spin locks (MTX_SPIN-initialized)
similarily, for releasing a lock, we now have:
mtx_unlock(lock) for MTX_DEF and mtx_unlock_spin(lock) for MTX_SPIN.
We change the caller interface for the two different types of locks
because the semantics are entirely different for each case, and this
makes it explicitly clear and, at the same time, it rids us of the
extra `type' argument.
The enter->lock and exit->unlock change has been made with the idea
that we're "locking data" and not "entering locked code" in mind.
Further, remove all additional "flags" previously passed to the
lock acquire/release routines with the exception of two:
MTX_QUIET and MTX_NOSWITCH
The functionality of these flags is preserved and they can be passed
to the lock/unlock routines by calling the corresponding wrappers:
mtx_{lock, unlock}_flags(lock, flag(s)) and
mtx_{lock, unlock}_spin_flags(lock, flag(s)) for MTX_DEF and MTX_SPIN
locks, respectively.
Re-inline some lock acq/rel code; in the sleep lock case, we only
inline the _obtain_lock()s in order to ensure that the inlined code
fits into a cache line. In the spin lock case, we inline recursion and
actually only perform a function call if we need to spin. This change
has been made with the idea that we generally tend to avoid spin locks
and that also the spin locks that we do have and are heavily used
(i.e. sched_lock) do recurse, and therefore in an effort to reduce
function call overhead for some architectures (such as alpha), we
inline recursion for this case.
Create a new malloc type for the witness code and retire from using
the M_DEV type. The new type is called M_WITNESS and is only declared
if WITNESS is enabled.
Begin cleaning up some machdep/mutex.h code - specifically updated the
"optimized" inlined code in alpha/mutex.h and wrote MTX_LOCK_SPIN
and MTX_UNLOCK_SPIN asm macros for the i386/mutex.h as we presently
need those.
Finally, caught up to the interface changes in all sys code.
Contributors: jake, jhb, jasone (in no particular order)
2001-02-09 06:11:45 +00:00
|
|
|
mtx_lock(&sc->sc_mtx);
|
2000-11-28 00:05:20 +00:00
|
|
|
if (sc->sc_flags & PCCBB_KTHREAD_DONE)
|
|
|
|
break;
|
2000-10-18 03:25:13 +00:00
|
|
|
|
2002-01-14 02:59:06 +00:00
|
|
|
status = pccbb_get(sc, PCCBB_SOCKET_STATE);
|
2000-10-18 03:25:13 +00:00
|
|
|
if ((status & PCCBB_SOCKET_STAT_CD) == 0) {
|
2001-01-06 18:04:55 +00:00
|
|
|
pccbb_insert(sc);
|
2000-10-18 03:25:13 +00:00
|
|
|
} else {
|
2001-01-06 18:04:55 +00:00
|
|
|
pccbb_removal(sc);
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
Change and clean the mutex lock interface.
mtx_enter(lock, type) becomes:
mtx_lock(lock) for sleep locks (MTX_DEF-initialized locks)
mtx_lock_spin(lock) for spin locks (MTX_SPIN-initialized)
similarily, for releasing a lock, we now have:
mtx_unlock(lock) for MTX_DEF and mtx_unlock_spin(lock) for MTX_SPIN.
We change the caller interface for the two different types of locks
because the semantics are entirely different for each case, and this
makes it explicitly clear and, at the same time, it rids us of the
extra `type' argument.
The enter->lock and exit->unlock change has been made with the idea
that we're "locking data" and not "entering locked code" in mind.
Further, remove all additional "flags" previously passed to the
lock acquire/release routines with the exception of two:
MTX_QUIET and MTX_NOSWITCH
The functionality of these flags is preserved and they can be passed
to the lock/unlock routines by calling the corresponding wrappers:
mtx_{lock, unlock}_flags(lock, flag(s)) and
mtx_{lock, unlock}_spin_flags(lock, flag(s)) for MTX_DEF and MTX_SPIN
locks, respectively.
Re-inline some lock acq/rel code; in the sleep lock case, we only
inline the _obtain_lock()s in order to ensure that the inlined code
fits into a cache line. In the spin lock case, we inline recursion and
actually only perform a function call if we need to spin. This change
has been made with the idea that we generally tend to avoid spin locks
and that also the spin locks that we do have and are heavily used
(i.e. sched_lock) do recurse, and therefore in an effort to reduce
function call overhead for some architectures (such as alpha), we
inline recursion for this case.
Create a new malloc type for the witness code and retire from using
the M_DEV type. The new type is called M_WITNESS and is only declared
if WITNESS is enabled.
Begin cleaning up some machdep/mutex.h code - specifically updated the
"optimized" inlined code in alpha/mutex.h and wrote MTX_LOCK_SPIN
and MTX_UNLOCK_SPIN asm macros for the i386/mutex.h as we presently
need those.
Finally, caught up to the interface changes in all sys code.
Contributors: jake, jhb, jasone (in no particular order)
2001-02-09 06:11:45 +00:00
|
|
|
mtx_unlock(&sc->sc_mtx);
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
Change and clean the mutex lock interface.
mtx_enter(lock, type) becomes:
mtx_lock(lock) for sleep locks (MTX_DEF-initialized locks)
mtx_lock_spin(lock) for spin locks (MTX_SPIN-initialized)
similarily, for releasing a lock, we now have:
mtx_unlock(lock) for MTX_DEF and mtx_unlock_spin(lock) for MTX_SPIN.
We change the caller interface for the two different types of locks
because the semantics are entirely different for each case, and this
makes it explicitly clear and, at the same time, it rids us of the
extra `type' argument.
The enter->lock and exit->unlock change has been made with the idea
that we're "locking data" and not "entering locked code" in mind.
Further, remove all additional "flags" previously passed to the
lock acquire/release routines with the exception of two:
MTX_QUIET and MTX_NOSWITCH
The functionality of these flags is preserved and they can be passed
to the lock/unlock routines by calling the corresponding wrappers:
mtx_{lock, unlock}_flags(lock, flag(s)) and
mtx_{lock, unlock}_spin_flags(lock, flag(s)) for MTX_DEF and MTX_SPIN
locks, respectively.
Re-inline some lock acq/rel code; in the sleep lock case, we only
inline the _obtain_lock()s in order to ensure that the inlined code
fits into a cache line. In the spin lock case, we inline recursion and
actually only perform a function call if we need to spin. This change
has been made with the idea that we generally tend to avoid spin locks
and that also the spin locks that we do have and are heavily used
(i.e. sched_lock) do recurse, and therefore in an effort to reduce
function call overhead for some architectures (such as alpha), we
inline recursion for this case.
Create a new malloc type for the witness code and retire from using
the M_DEV type. The new type is called M_WITNESS and is only declared
if WITNESS is enabled.
Begin cleaning up some machdep/mutex.h code - specifically updated the
"optimized" inlined code in alpha/mutex.h and wrote MTX_LOCK_SPIN
and MTX_UNLOCK_SPIN asm macros for the i386/mutex.h as we presently
need those.
Finally, caught up to the interface changes in all sys code.
Contributors: jake, jhb, jasone (in no particular order)
2001-02-09 06:11:45 +00:00
|
|
|
mtx_unlock(&sc->sc_mtx);
|
2000-11-28 00:05:20 +00:00
|
|
|
sc->sc_flags &= ~PCCBB_KTHREAD_RUNNING;
|
|
|
|
wakeup(sc);
|
2000-10-18 03:25:13 +00:00
|
|
|
kthread_exit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2001-08-27 00:09:42 +00:00
|
|
|
pccbb_create_event_thread(struct pccbb_softc *sc)
|
2000-10-18 03:25:13 +00:00
|
|
|
{
|
|
|
|
if (kthread_create(pccbb_event_thread, sc, &sc->event_thread,
|
2001-08-26 23:55:34 +00:00
|
|
|
0, "%s%d", device_get_name(sc->sc_dev),
|
|
|
|
device_get_unit(sc->sc_dev))) {
|
2000-10-18 03:25:13 +00:00
|
|
|
device_printf (sc->sc_dev, "unable to create event thread.\n");
|
|
|
|
panic ("pccbb_create_event_thread");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
pccbb_start_threads(void *arg)
|
|
|
|
{
|
|
|
|
struct pccbb_sclist *sclist;
|
|
|
|
|
|
|
|
STAILQ_FOREACH(sclist, &softcs, entries) {
|
|
|
|
pccbb_create_event_thread(sclist->sc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************************/
|
|
|
|
/* Insert/removal */
|
|
|
|
/************************************************************************/
|
|
|
|
|
|
|
|
static void
|
2001-08-26 23:55:34 +00:00
|
|
|
pccbb_insert(struct pccbb_softc *sc)
|
2000-10-18 03:25:13 +00:00
|
|
|
{
|
2002-01-14 02:59:06 +00:00
|
|
|
uint32_t sockevent, sockstate;
|
2000-10-18 03:25:13 +00:00
|
|
|
int timeout = 30;
|
|
|
|
|
|
|
|
do {
|
2002-01-14 02:59:06 +00:00
|
|
|
sockevent = pccbb_get(sc, PCCBB_SOCKET_EVENT);
|
|
|
|
sockstate = pccbb_get(sc, PCCBB_SOCKET_STATE);
|
2000-10-18 03:25:13 +00:00
|
|
|
} while (sockstate & PCCBB_SOCKET_STAT_CD && --timeout > 0);
|
|
|
|
|
|
|
|
if (timeout < 0) {
|
|
|
|
device_printf (sc->sc_dev, "insert timeout");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
DEVPRINTF((sc->sc_dev, "card inserted: event=0x%08x, state=%08x\n",
|
2001-08-26 23:55:34 +00:00
|
|
|
sockevent, sockstate));
|
2000-10-18 03:25:13 +00:00
|
|
|
|
|
|
|
if (sockstate & PCCBB_SOCKET_STAT_16BIT && sc->sc_pccarddev != NULL) {
|
2001-01-06 18:04:55 +00:00
|
|
|
sc->sc_flags |= PCCBB_16BIT_CARD;
|
|
|
|
if (CARD_ATTACH_CARD(sc->sc_pccarddev) != 0)
|
2000-10-18 03:25:13 +00:00
|
|
|
device_printf(sc->sc_dev, "card activation failed\n");
|
|
|
|
} else if (sockstate & PCCBB_SOCKET_STAT_CB && sc->sc_cbdev != NULL) {
|
|
|
|
sc->sc_flags &= ~PCCBB_16BIT_CARD;
|
2001-01-06 18:04:55 +00:00
|
|
|
if (CARD_ATTACH_CARD(sc->sc_cbdev) != 0)
|
2000-10-18 03:25:13 +00:00
|
|
|
device_printf(sc->sc_dev, "card activation failed\n");
|
|
|
|
} else {
|
|
|
|
device_printf (sc->sc_dev, "Unsupported card type detected\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2001-08-26 23:55:34 +00:00
|
|
|
pccbb_removal(struct pccbb_softc *sc)
|
2000-10-18 03:25:13 +00:00
|
|
|
{
|
|
|
|
struct pccbb_reslist *rle;
|
|
|
|
|
2001-08-27 00:09:42 +00:00
|
|
|
if (sc->sc_flags & PCCBB_16BIT_CARD && sc->sc_pccarddev != NULL)
|
2000-10-18 03:25:13 +00:00
|
|
|
CARD_DETACH_CARD(sc->sc_pccarddev, DETACH_FORCE);
|
2001-08-27 00:09:42 +00:00
|
|
|
else if ((!(sc->sc_flags & PCCBB_16BIT_CARD)) && sc->sc_cbdev != NULL)
|
2000-10-18 03:25:13 +00:00
|
|
|
CARD_DETACH_CARD(sc->sc_cbdev, DETACH_FORCE);
|
|
|
|
|
2001-08-27 00:09:42 +00:00
|
|
|
while ((rle = SLIST_FIRST(&sc->rl)) != NULL) {
|
2001-06-30 03:57:20 +00:00
|
|
|
device_printf(sc->sc_dev, "Danger Will Robinson: Resource "
|
|
|
|
"left allocated! This is a bug... "
|
2001-08-27 00:09:42 +00:00
|
|
|
"(rid=%x, type=%d, addr=%lx)\n", rle->rid, rle->type,
|
|
|
|
rman_get_start(rle->res));
|
|
|
|
SLIST_REMOVE_HEAD(&sc->rl, link);
|
|
|
|
free(rle, M_DEVBUF);
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************************/
|
|
|
|
/* Interrupt Handler */
|
|
|
|
/************************************************************************/
|
|
|
|
|
|
|
|
static void
|
2001-08-26 23:55:34 +00:00
|
|
|
pccbb_intr(void *arg)
|
2000-10-18 03:25:13 +00:00
|
|
|
{
|
|
|
|
struct pccbb_softc *sc = arg;
|
2002-01-14 02:59:06 +00:00
|
|
|
uint32_t sockevent;
|
2000-10-18 03:25:13 +00:00
|
|
|
|
2002-01-14 02:59:06 +00:00
|
|
|
if (!(sockevent = pccbb_get(sc, PCCBB_SOCKET_EVENT))) {
|
2000-10-18 03:25:13 +00:00
|
|
|
/* not for me. */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* reset bit */
|
2002-01-14 02:59:06 +00:00
|
|
|
pccbb_setb(sc, PCCBB_SOCKET_EVENT, 0x01); /* XXXmagic */
|
2000-10-18 03:25:13 +00:00
|
|
|
|
|
|
|
if (sockevent & PCCBB_SOCKET_EVENT_CD) {
|
Change and clean the mutex lock interface.
mtx_enter(lock, type) becomes:
mtx_lock(lock) for sleep locks (MTX_DEF-initialized locks)
mtx_lock_spin(lock) for spin locks (MTX_SPIN-initialized)
similarily, for releasing a lock, we now have:
mtx_unlock(lock) for MTX_DEF and mtx_unlock_spin(lock) for MTX_SPIN.
We change the caller interface for the two different types of locks
because the semantics are entirely different for each case, and this
makes it explicitly clear and, at the same time, it rids us of the
extra `type' argument.
The enter->lock and exit->unlock change has been made with the idea
that we're "locking data" and not "entering locked code" in mind.
Further, remove all additional "flags" previously passed to the
lock acquire/release routines with the exception of two:
MTX_QUIET and MTX_NOSWITCH
The functionality of these flags is preserved and they can be passed
to the lock/unlock routines by calling the corresponding wrappers:
mtx_{lock, unlock}_flags(lock, flag(s)) and
mtx_{lock, unlock}_spin_flags(lock, flag(s)) for MTX_DEF and MTX_SPIN
locks, respectively.
Re-inline some lock acq/rel code; in the sleep lock case, we only
inline the _obtain_lock()s in order to ensure that the inlined code
fits into a cache line. In the spin lock case, we inline recursion and
actually only perform a function call if we need to spin. This change
has been made with the idea that we generally tend to avoid spin locks
and that also the spin locks that we do have and are heavily used
(i.e. sched_lock) do recurse, and therefore in an effort to reduce
function call overhead for some architectures (such as alpha), we
inline recursion for this case.
Create a new malloc type for the witness code and retire from using
the M_DEV type. The new type is called M_WITNESS and is only declared
if WITNESS is enabled.
Begin cleaning up some machdep/mutex.h code - specifically updated the
"optimized" inlined code in alpha/mutex.h and wrote MTX_LOCK_SPIN
and MTX_UNLOCK_SPIN asm macros for the i386/mutex.h as we presently
need those.
Finally, caught up to the interface changes in all sys code.
Contributors: jake, jhb, jasone (in no particular order)
2001-02-09 06:11:45 +00:00
|
|
|
mtx_lock(&sc->sc_mtx);
|
2000-10-18 03:25:13 +00:00
|
|
|
wakeup(sc);
|
Change and clean the mutex lock interface.
mtx_enter(lock, type) becomes:
mtx_lock(lock) for sleep locks (MTX_DEF-initialized locks)
mtx_lock_spin(lock) for spin locks (MTX_SPIN-initialized)
similarily, for releasing a lock, we now have:
mtx_unlock(lock) for MTX_DEF and mtx_unlock_spin(lock) for MTX_SPIN.
We change the caller interface for the two different types of locks
because the semantics are entirely different for each case, and this
makes it explicitly clear and, at the same time, it rids us of the
extra `type' argument.
The enter->lock and exit->unlock change has been made with the idea
that we're "locking data" and not "entering locked code" in mind.
Further, remove all additional "flags" previously passed to the
lock acquire/release routines with the exception of two:
MTX_QUIET and MTX_NOSWITCH
The functionality of these flags is preserved and they can be passed
to the lock/unlock routines by calling the corresponding wrappers:
mtx_{lock, unlock}_flags(lock, flag(s)) and
mtx_{lock, unlock}_spin_flags(lock, flag(s)) for MTX_DEF and MTX_SPIN
locks, respectively.
Re-inline some lock acq/rel code; in the sleep lock case, we only
inline the _obtain_lock()s in order to ensure that the inlined code
fits into a cache line. In the spin lock case, we inline recursion and
actually only perform a function call if we need to spin. This change
has been made with the idea that we generally tend to avoid spin locks
and that also the spin locks that we do have and are heavily used
(i.e. sched_lock) do recurse, and therefore in an effort to reduce
function call overhead for some architectures (such as alpha), we
inline recursion for this case.
Create a new malloc type for the witness code and retire from using
the M_DEV type. The new type is called M_WITNESS and is only declared
if WITNESS is enabled.
Begin cleaning up some machdep/mutex.h code - specifically updated the
"optimized" inlined code in alpha/mutex.h and wrote MTX_LOCK_SPIN
and MTX_UNLOCK_SPIN asm macros for the i386/mutex.h as we presently
need those.
Finally, caught up to the interface changes in all sys code.
Contributors: jake, jhb, jasone (in no particular order)
2001-02-09 06:11:45 +00:00
|
|
|
mtx_unlock(&sc->sc_mtx);
|
2000-10-18 03:25:13 +00:00
|
|
|
} else {
|
|
|
|
if (sockevent & PCCBB_SOCKET_EVENT_CSTS) {
|
|
|
|
DPRINTF((" cstsevent occures, 0x%08x\n",
|
2002-01-14 02:59:06 +00:00
|
|
|
pccbb_get(sc, PCCBB_SOCKET_STATE)));
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
|
|
|
if (sockevent & PCCBB_SOCKET_EVENT_POWER) {
|
|
|
|
DPRINTF((" pwrevent occures, 0x%08x\n",
|
2002-01-14 02:59:06 +00:00
|
|
|
pccbb_get(sc, PCCBB_SOCKET_STATE)));
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************************/
|
2000-11-28 00:05:20 +00:00
|
|
|
/* Generic Power functions */
|
2000-10-18 03:25:13 +00:00
|
|
|
/************************************************************************/
|
|
|
|
|
|
|
|
static int
|
2001-08-26 23:55:34 +00:00
|
|
|
pccbb_detect_voltage(device_t brdev)
|
2000-10-18 03:25:13 +00:00
|
|
|
{
|
2001-08-26 23:55:34 +00:00
|
|
|
struct pccbb_softc *sc = device_get_softc(brdev);
|
2002-01-14 02:59:06 +00:00
|
|
|
uint32_t psr;
|
2000-10-18 03:25:13 +00:00
|
|
|
int vol = CARD_UKN_CARD;
|
|
|
|
|
2002-01-14 02:59:06 +00:00
|
|
|
psr = pccbb_get(sc, PCCBB_SOCKET_STATE);
|
2000-10-18 03:25:13 +00:00
|
|
|
|
2001-11-26 05:42:45 +00:00
|
|
|
if (psr & PCCBB_SOCKET_STAT_5VCARD)
|
2000-10-18 03:25:13 +00:00
|
|
|
vol |= CARD_5V_CARD;
|
2001-11-26 05:42:45 +00:00
|
|
|
if (psr & PCCBB_SOCKET_STAT_3VCARD)
|
2000-10-18 03:25:13 +00:00
|
|
|
vol |= CARD_3V_CARD;
|
2001-11-26 05:42:45 +00:00
|
|
|
if (psr & PCCBB_SOCKET_STAT_XVCARD)
|
2000-10-18 03:25:13 +00:00
|
|
|
vol |= CARD_XV_CARD;
|
2001-11-26 05:42:45 +00:00
|
|
|
if (psr & PCCBB_SOCKET_STAT_YVCARD)
|
2000-10-18 03:25:13 +00:00
|
|
|
vol |= CARD_YV_CARD;
|
|
|
|
|
2001-11-26 05:42:45 +00:00
|
|
|
return (vol);
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2001-08-26 23:55:34 +00:00
|
|
|
pccbb_power(device_t brdev, int volts)
|
2000-10-18 03:25:13 +00:00
|
|
|
{
|
2002-01-14 02:59:06 +00:00
|
|
|
uint32_t status, sock_ctrl;
|
2001-08-26 23:55:34 +00:00
|
|
|
struct pccbb_softc *sc = device_get_softc(brdev);
|
2001-11-26 05:42:45 +00:00
|
|
|
int timeout;
|
2002-01-14 02:59:06 +00:00
|
|
|
uint32_t sockevent;
|
2000-10-18 03:25:13 +00:00
|
|
|
|
|
|
|
DEVPRINTF((sc->sc_dev, "pccbb_power: %s and %s [%x]\n",
|
2001-08-26 23:55:34 +00:00
|
|
|
(volts & CARD_VCCMASK) == CARD_VCC_UC ? "CARD_VCC_UC" :
|
|
|
|
(volts & CARD_VCCMASK) == CARD_VCC_5V ? "CARD_VCC_5V" :
|
|
|
|
(volts & CARD_VCCMASK) == CARD_VCC_3V ? "CARD_VCC_3V" :
|
|
|
|
(volts & CARD_VCCMASK) == CARD_VCC_XV ? "CARD_VCC_XV" :
|
|
|
|
(volts & CARD_VCCMASK) == CARD_VCC_YV ? "CARD_VCC_YV" :
|
|
|
|
(volts & CARD_VCCMASK) == CARD_VCC_0V ? "CARD_VCC_0V" :
|
|
|
|
"VCC-UNKNOWN",
|
|
|
|
(volts & CARD_VPPMASK) == CARD_VPP_UC ? "CARD_VPP_UC" :
|
|
|
|
(volts & CARD_VPPMASK) == CARD_VPP_12V ? "CARD_VPP_12V" :
|
|
|
|
(volts & CARD_VPPMASK) == CARD_VPP_VCC ? "CARD_VPP_VCC" :
|
|
|
|
(volts & CARD_VPPMASK) == CARD_VPP_0V ? "CARD_VPP_0V" :
|
|
|
|
"VPP-UNKNOWN",
|
|
|
|
volts));
|
2000-10-18 03:25:13 +00:00
|
|
|
|
2002-01-14 02:59:06 +00:00
|
|
|
status = pccbb_get(sc, PCCBB_SOCKET_STATE);
|
|
|
|
sock_ctrl = pccbb_get(sc, PCCBB_SOCKET_CONTROL);
|
2000-10-18 03:25:13 +00:00
|
|
|
|
|
|
|
switch (volts & CARD_VCCMASK) {
|
|
|
|
case CARD_VCC_UC:
|
|
|
|
break;
|
|
|
|
case CARD_VCC_5V:
|
|
|
|
if (PCCBB_SOCKET_STAT_5VCARD & status) { /* check 5 V card */
|
|
|
|
sock_ctrl &= ~PCCBB_SOCKET_CTRL_VCCMASK;
|
|
|
|
sock_ctrl |= PCCBB_SOCKET_CTRL_VCC_5V;
|
|
|
|
} else {
|
|
|
|
device_printf(sc->sc_dev,
|
2001-08-26 23:55:34 +00:00
|
|
|
"BAD voltage request: no 5 V card\n");
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case CARD_VCC_3V:
|
|
|
|
if (PCCBB_SOCKET_STAT_3VCARD & status) {
|
|
|
|
sock_ctrl &= ~PCCBB_SOCKET_CTRL_VCCMASK;
|
|
|
|
sock_ctrl |= PCCBB_SOCKET_CTRL_VCC_3V;
|
|
|
|
} else {
|
|
|
|
device_printf(sc->sc_dev,
|
2001-08-26 23:55:34 +00:00
|
|
|
"BAD voltage request: no 3.3 V card\n");
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case CARD_VCC_0V:
|
|
|
|
sock_ctrl &= ~PCCBB_SOCKET_CTRL_VCCMASK;
|
|
|
|
break;
|
|
|
|
default:
|
2001-11-26 05:42:45 +00:00
|
|
|
return (0); /* power NEVER changed */
|
2000-10-18 03:25:13 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (volts & CARD_VPPMASK) {
|
|
|
|
case CARD_VPP_UC:
|
|
|
|
break;
|
|
|
|
case CARD_VPP_0V:
|
|
|
|
sock_ctrl &= ~PCCBB_SOCKET_CTRL_VPPMASK;
|
|
|
|
break;
|
|
|
|
case CARD_VPP_VCC:
|
|
|
|
sock_ctrl &= ~PCCBB_SOCKET_CTRL_VPPMASK;
|
|
|
|
sock_ctrl |= ((sock_ctrl >> 4) & 0x07);
|
|
|
|
break;
|
|
|
|
case CARD_VPP_12V:
|
|
|
|
sock_ctrl &= ~PCCBB_SOCKET_CTRL_VPPMASK;
|
|
|
|
sock_ctrl |= PCCBB_SOCKET_CTRL_VPP_12V;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2002-01-14 02:59:06 +00:00
|
|
|
if (pccbb_get(sc, PCCBB_SOCKET_CONTROL) == sock_ctrl)
|
2001-11-26 05:42:45 +00:00
|
|
|
return (1); /* no change necessary */
|
2001-01-06 18:04:55 +00:00
|
|
|
|
2002-01-14 02:59:06 +00:00
|
|
|
pccbb_set(sc, PCCBB_SOCKET_CONTROL, sock_ctrl);
|
|
|
|
status = pccbb_get(sc, PCCBB_SOCKET_STATE);
|
2000-10-18 03:25:13 +00:00
|
|
|
|
2001-09-06 20:43:12 +00:00
|
|
|
/*
|
|
|
|
* XXX This busy wait is bogus. We should wait for a power
|
|
|
|
* interrupt and then whine if the status is bad. If we're
|
|
|
|
* worried about the card not coming up, then we should also
|
|
|
|
* schedule a timeout which we can cacel in the power interrupt.
|
|
|
|
*/
|
2001-11-26 05:42:45 +00:00
|
|
|
timeout = 20;
|
|
|
|
do {
|
|
|
|
DELAY(20*1000);
|
2002-01-14 02:59:06 +00:00
|
|
|
sockevent = pccbb_get(sc, PCCBB_SOCKET_EVENT);
|
2001-11-26 05:42:45 +00:00
|
|
|
} while (!(sockevent & PCCBB_SOCKET_EVENT_POWER) && --timeout > 0);
|
|
|
|
/* reset event status */
|
|
|
|
/* XXX should only reset EVENT_POWER */
|
2002-01-14 02:59:06 +00:00
|
|
|
pccbb_set(sc, PCCBB_SOCKET_EVENT, sockevent);
|
2001-11-26 05:42:45 +00:00
|
|
|
if (timeout < 0) {
|
|
|
|
printf ("VCC supply failed.\n");
|
|
|
|
return (0);
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
2001-11-26 05:42:45 +00:00
|
|
|
|
2000-10-18 03:25:13 +00:00
|
|
|
/* XXX
|
|
|
|
* delay 400 ms: thgough the standard defines that the Vcc set-up time
|
|
|
|
* is 20 ms, some PC-Card bridge requires longer duration.
|
2001-09-06 20:43:12 +00:00
|
|
|
* XXX Note: We should check the stutus AFTER the delay to give time
|
|
|
|
* for things to stabilize.
|
2000-10-18 03:25:13 +00:00
|
|
|
*/
|
|
|
|
DELAY(400*1000);
|
|
|
|
|
|
|
|
if (status & PCCBB_SOCKET_STAT_BADVCC) {
|
|
|
|
device_printf(sc->sc_dev,
|
2001-08-26 23:55:34 +00:00
|
|
|
"bad Vcc request. ctrl=0x%x, status=0x%x\n",
|
|
|
|
sock_ctrl ,status);
|
2000-10-18 03:25:13 +00:00
|
|
|
printf("pccbb_power: %s and %s [%x]\n",
|
2001-08-26 23:55:34 +00:00
|
|
|
(volts & CARD_VCCMASK) == CARD_VCC_UC ? "CARD_VCC_UC" :
|
|
|
|
(volts & CARD_VCCMASK) == CARD_VCC_5V ? "CARD_VCC_5V" :
|
|
|
|
(volts & CARD_VCCMASK) == CARD_VCC_3V ? "CARD_VCC_3V" :
|
|
|
|
(volts & CARD_VCCMASK) == CARD_VCC_XV ? "CARD_VCC_XV" :
|
|
|
|
(volts & CARD_VCCMASK) == CARD_VCC_YV ? "CARD_VCC_YV" :
|
|
|
|
(volts & CARD_VCCMASK) == CARD_VCC_0V ? "CARD_VCC_0V" :
|
|
|
|
"VCC-UNKNOWN",
|
|
|
|
(volts & CARD_VPPMASK) == CARD_VPP_UC ? "CARD_VPP_UC" :
|
|
|
|
(volts & CARD_VPPMASK) == CARD_VPP_12V ? "CARD_VPP_12V":
|
|
|
|
(volts & CARD_VPPMASK) == CARD_VPP_VCC ? "CARD_VPP_VCC":
|
|
|
|
(volts & CARD_VPPMASK) == CARD_VPP_0V ? "CARD_VPP_0V" :
|
|
|
|
"VPP-UNKNOWN",
|
|
|
|
volts);
|
2001-11-26 05:42:45 +00:00
|
|
|
return (0);
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
2001-11-26 05:42:45 +00:00
|
|
|
return (1); /* power changed correctly */
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************************/
|
2000-11-28 00:05:20 +00:00
|
|
|
/* Cardbus power functions */
|
2000-10-18 03:25:13 +00:00
|
|
|
/************************************************************************/
|
|
|
|
|
2000-11-28 00:05:20 +00:00
|
|
|
static void
|
2001-08-26 23:55:34 +00:00
|
|
|
pccbb_cardbus_reset(device_t brdev)
|
2000-10-18 03:25:13 +00:00
|
|
|
{
|
2001-08-26 23:55:34 +00:00
|
|
|
struct pccbb_softc *sc = device_get_softc(brdev);
|
2000-10-18 03:25:13 +00:00
|
|
|
int delay_us;
|
|
|
|
|
|
|
|
delay_us = sc->sc_chipset == CB_RF5C47X ? 400*1000 : 20*1000;
|
|
|
|
|
2001-08-26 23:55:34 +00:00
|
|
|
PCI_MASK_CONFIG(brdev, PCCBBR_BRIDGECTRL, |PCCBBM_BRIDGECTRL_RESET, 2);
|
2000-10-18 03:25:13 +00:00
|
|
|
|
|
|
|
DELAY(delay_us);
|
|
|
|
|
|
|
|
/* If a card exists, unreset it! */
|
2002-01-14 02:59:06 +00:00
|
|
|
if ((pccbb_get(sc, PCCBB_SOCKET_STATE) & PCCBB_SOCKET_STAT_CD) == 0) {
|
2001-08-26 23:55:34 +00:00
|
|
|
PCI_MASK_CONFIG(brdev, PCCBBR_BRIDGECTRL,
|
|
|
|
&~PCCBBM_BRIDGECTRL_RESET, 2);
|
2000-10-18 03:25:13 +00:00
|
|
|
DELAY(delay_us);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-11-28 00:05:20 +00:00
|
|
|
static int
|
2001-08-26 23:55:34 +00:00
|
|
|
pccbb_cardbus_power_enable_socket(device_t brdev, device_t child)
|
2000-11-28 00:05:20 +00:00
|
|
|
{
|
2001-08-26 23:55:34 +00:00
|
|
|
struct pccbb_softc *sc = device_get_softc(brdev);
|
2000-11-28 00:05:20 +00:00
|
|
|
int voltage;
|
2001-01-06 18:04:55 +00:00
|
|
|
|
2002-01-14 02:59:06 +00:00
|
|
|
if ((pccbb_get(sc, PCCBB_SOCKET_STATE) & PCCBB_SOCKET_STAT_CD) ==
|
2001-08-26 23:55:34 +00:00
|
|
|
PCCBB_SOCKET_STAT_CD)
|
2001-11-26 05:42:45 +00:00
|
|
|
return (ENODEV);
|
2001-01-06 18:04:55 +00:00
|
|
|
|
2001-08-26 23:55:34 +00:00
|
|
|
voltage = pccbb_detect_voltage(brdev);
|
2000-11-28 00:05:20 +00:00
|
|
|
|
2001-08-26 23:55:34 +00:00
|
|
|
pccbb_power(brdev, CARD_VCC_0V | CARD_VPP_0V);
|
2000-11-28 00:05:20 +00:00
|
|
|
if (voltage & CARD_5V_CARD)
|
2001-08-26 23:55:34 +00:00
|
|
|
pccbb_power(brdev, CARD_VCC_5V | CARD_VPP_VCC);
|
2000-11-28 00:05:20 +00:00
|
|
|
else if (voltage & CARD_3V_CARD)
|
2001-08-26 23:55:34 +00:00
|
|
|
pccbb_power(brdev, CARD_VCC_3V | CARD_VPP_VCC);
|
2000-11-28 00:05:20 +00:00
|
|
|
else {
|
2001-08-26 23:55:34 +00:00
|
|
|
device_printf(brdev, "Unknown card voltage\n");
|
2001-11-26 05:42:45 +00:00
|
|
|
return (ENXIO);
|
2000-11-28 00:05:20 +00:00
|
|
|
}
|
|
|
|
|
2001-08-26 23:55:34 +00:00
|
|
|
pccbb_cardbus_reset(brdev);
|
2001-11-26 05:42:45 +00:00
|
|
|
return (0);
|
2000-11-28 00:05:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2001-08-26 23:55:34 +00:00
|
|
|
pccbb_cardbus_power_disable_socket(device_t brdev, device_t child)
|
2000-11-28 00:05:20 +00:00
|
|
|
{
|
2001-08-26 23:55:34 +00:00
|
|
|
pccbb_power(brdev, CARD_VCC_0V | CARD_VPP_0V);
|
|
|
|
pccbb_cardbus_reset(brdev);
|
2000-11-28 00:05:20 +00:00
|
|
|
}
|
2000-10-18 03:25:13 +00:00
|
|
|
|
|
|
|
/************************************************************************/
|
|
|
|
/* Cardbus Resource */
|
|
|
|
/************************************************************************/
|
|
|
|
|
|
|
|
static int
|
2002-01-14 02:59:06 +00:00
|
|
|
pccbb_cardbus_io_open(device_t brdev, int win, uint32_t start, uint32_t end)
|
2000-10-18 03:25:13 +00:00
|
|
|
{
|
|
|
|
int basereg;
|
|
|
|
int limitreg;
|
|
|
|
|
|
|
|
if ((win < 0) || (win > 1)) {
|
2001-08-26 23:55:34 +00:00
|
|
|
DEVPRINTF((brdev,
|
|
|
|
"pccbb_cardbus_io_open: window out of range %d\n", win));
|
2001-11-26 05:42:45 +00:00
|
|
|
return (EINVAL);
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
basereg = win*8 + PCCBBR_IOBASE0;
|
|
|
|
limitreg = win*8 + PCCBBR_IOLIMIT0;
|
|
|
|
|
2001-08-26 23:55:34 +00:00
|
|
|
pci_write_config(brdev, basereg, start, 4);
|
|
|
|
pci_write_config(brdev, limitreg, end, 4);
|
2001-11-26 05:42:45 +00:00
|
|
|
return (0);
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2002-01-14 02:59:06 +00:00
|
|
|
pccbb_cardbus_mem_open(device_t brdev, int win, uint32_t start, uint32_t end)
|
2000-10-18 03:25:13 +00:00
|
|
|
{
|
|
|
|
int basereg;
|
|
|
|
int limitreg;
|
|
|
|
|
|
|
|
if ((win < 0) || (win > 1)) {
|
2001-08-26 23:55:34 +00:00
|
|
|
DEVPRINTF((brdev,
|
|
|
|
"pccbb_cardbus_mem_open: window out of range %d\n", win));
|
2001-11-26 05:42:45 +00:00
|
|
|
return (EINVAL);
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
basereg = win*8 + PCCBBR_MEMBASE0;
|
|
|
|
limitreg = win*8 + PCCBBR_MEMLIMIT0;
|
|
|
|
|
2001-08-26 23:55:34 +00:00
|
|
|
pci_write_config(brdev, basereg, start, 4);
|
|
|
|
pci_write_config(brdev, limitreg, end, 4);
|
2001-11-26 05:42:45 +00:00
|
|
|
return (0);
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
pccbb_cardbus_auto_open(struct pccbb_softc *sc, int type)
|
|
|
|
{
|
2002-01-14 02:59:06 +00:00
|
|
|
uint32_t starts[2];
|
|
|
|
uint32_t ends[2];
|
2000-10-18 03:25:13 +00:00
|
|
|
struct pccbb_reslist *rle;
|
|
|
|
int align;
|
2001-08-27 00:09:42 +00:00
|
|
|
int prefetchable[2];
|
2002-01-14 02:59:06 +00:00
|
|
|
uint32_t reg;
|
2000-10-18 03:25:13 +00:00
|
|
|
|
|
|
|
starts[0] = starts[1] = 0xffffffff;
|
|
|
|
ends[0] = ends[1] = 0;
|
|
|
|
|
2001-08-27 00:09:42 +00:00
|
|
|
if (type == SYS_RES_MEMORY)
|
|
|
|
align = PCCBB_MEMALIGN;
|
|
|
|
else if (type == SYS_RES_IOPORT)
|
|
|
|
align = PCCBB_IOALIGN;
|
|
|
|
else
|
|
|
|
align = 1;
|
|
|
|
|
|
|
|
SLIST_FOREACH(rle, &sc->rl, link) {
|
2000-10-18 03:25:13 +00:00
|
|
|
if (rle->type != type)
|
|
|
|
;
|
2001-08-27 00:09:42 +00:00
|
|
|
else if (rle->res == NULL) {
|
|
|
|
device_printf(sc->sc_dev, "WARNING: Resource not reserved? "
|
|
|
|
"(type=%d, addr=%lx)\n",
|
|
|
|
rle->type, rman_get_start(rle->res));
|
|
|
|
} else if (!(rman_get_flags(rle->res) & RF_ACTIVE)) {
|
2001-11-26 05:42:45 +00:00
|
|
|
/* XXX */
|
2001-08-27 00:09:42 +00:00
|
|
|
} else if (starts[0] == 0xffffffff) {
|
|
|
|
starts[0] = rman_get_start(rle->res);
|
|
|
|
ends[0] = rman_get_end(rle->res);
|
|
|
|
prefetchable[0] =
|
|
|
|
rman_get_flags(rle->res) & RF_PREFETCHABLE;
|
|
|
|
} else if (rman_get_end(rle->res) > ends[0] &&
|
|
|
|
rman_get_start(rle->res) - ends[0] <
|
|
|
|
PCCBB_AUTO_OPEN_SMALLHOLE && prefetchable[0] ==
|
|
|
|
(rman_get_flags(rle->res) & RF_PREFETCHABLE)) {
|
|
|
|
ends[0] = rman_get_end(rle->res);
|
|
|
|
} else if (rman_get_start(rle->res) < starts[0] &&
|
|
|
|
starts[0] - rman_get_end(rle->res) <
|
|
|
|
PCCBB_AUTO_OPEN_SMALLHOLE && prefetchable[0] ==
|
|
|
|
(rman_get_flags(rle->res) & RF_PREFETCHABLE)) {
|
|
|
|
starts[0] = rman_get_start(rle->res);
|
2000-10-18 03:25:13 +00:00
|
|
|
} else if (starts[1] == 0xffffffff) {
|
2001-08-27 00:09:42 +00:00
|
|
|
starts[1] = rman_get_start(rle->res);
|
|
|
|
ends[1] = rman_get_end(rle->res);
|
|
|
|
prefetchable[1] =
|
|
|
|
rman_get_flags(rle->res) & RF_PREFETCHABLE;
|
|
|
|
} else if (rman_get_end(rle->res) > ends[1] &&
|
|
|
|
rman_get_start(rle->res) - ends[1] <
|
|
|
|
PCCBB_AUTO_OPEN_SMALLHOLE && prefetchable[1] ==
|
|
|
|
(rman_get_flags(rle->res) & RF_PREFETCHABLE)) {
|
|
|
|
ends[1] = rman_get_end(rle->res);
|
|
|
|
} else if (rman_get_start(rle->res) < starts[1] &&
|
|
|
|
starts[1] - rman_get_end(rle->res) <
|
|
|
|
PCCBB_AUTO_OPEN_SMALLHOLE && prefetchable[1] ==
|
|
|
|
(rman_get_flags(rle->res) & RF_PREFETCHABLE)) {
|
|
|
|
starts[1] = rman_get_start(rle->res);
|
2000-10-18 03:25:13 +00:00
|
|
|
} else {
|
2002-01-14 02:59:06 +00:00
|
|
|
uint32_t diffs[2];
|
2001-08-27 00:09:42 +00:00
|
|
|
int win;
|
2000-10-18 03:25:13 +00:00
|
|
|
|
|
|
|
diffs[0] = diffs[1] = 0xffffffff;
|
2001-08-27 00:09:42 +00:00
|
|
|
if (rman_get_start(rle->res) > ends[0])
|
|
|
|
diffs[0] = rman_get_start(rle->res) - ends[0];
|
|
|
|
else if (rman_get_end(rle->res) < starts[0])
|
|
|
|
diffs[0] = starts[0] - rman_get_end(rle->res);
|
|
|
|
if (rman_get_start(rle->res) > ends[1])
|
|
|
|
diffs[1] = rman_get_start(rle->res) - ends[1];
|
|
|
|
else if (rman_get_end(rle->res) < starts[1])
|
|
|
|
diffs[1] = starts[1] - rman_get_end(rle->res);
|
|
|
|
|
|
|
|
win = (diffs[0] <= diffs[1])?0:1;
|
|
|
|
if (rman_get_start(rle->res) > ends[win])
|
|
|
|
ends[win] = rman_get_end(rle->res);
|
|
|
|
else if (rman_get_end(rle->res) < starts[win])
|
|
|
|
starts[win] = rman_get_start(rle->res);
|
|
|
|
if (!(rman_get_flags(rle->res) & RF_PREFETCHABLE))
|
|
|
|
prefetchable[win] = 0;
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
|
|
|
|
2001-08-27 00:09:42 +00:00
|
|
|
if (starts[0] != 0xffffffff)
|
|
|
|
starts[0] -= starts[0] % align;
|
|
|
|
if (starts[1] != 0xffffffff)
|
|
|
|
starts[1] -= starts[1] % align;
|
|
|
|
if (ends[0] % align != 0)
|
|
|
|
ends[0] += align - ends[0]%align - 1;
|
|
|
|
if (ends[1] % align != 0)
|
|
|
|
ends[1] += align - ends[1]%align - 1;
|
|
|
|
}
|
2000-10-18 03:25:13 +00:00
|
|
|
|
|
|
|
if (type == SYS_RES_MEMORY) {
|
|
|
|
pccbb_cardbus_mem_open(sc->sc_dev, 0, starts[0], ends[0]);
|
|
|
|
pccbb_cardbus_mem_open(sc->sc_dev, 1, starts[1], ends[1]);
|
2001-08-27 00:09:42 +00:00
|
|
|
reg = pci_read_config(sc->sc_dev, PCCBBR_BRIDGECTRL, 2);
|
|
|
|
reg &= ~(PCCBBM_BRIDGECTRL_PREFETCH_0|
|
|
|
|
PCCBBM_BRIDGECTRL_PREFETCH_1);
|
|
|
|
reg |= (prefetchable[0]?PCCBBM_BRIDGECTRL_PREFETCH_0:0)|
|
|
|
|
(prefetchable[1]?PCCBBM_BRIDGECTRL_PREFETCH_1:0);
|
|
|
|
pci_write_config(sc->sc_dev, PCCBBR_BRIDGECTRL, reg, 2);
|
2000-10-18 03:25:13 +00:00
|
|
|
} else if (type == SYS_RES_IOPORT) {
|
|
|
|
pccbb_cardbus_io_open(sc->sc_dev, 0, starts[0], ends[0]);
|
|
|
|
pccbb_cardbus_io_open(sc->sc_dev, 1, starts[1], ends[1]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2001-08-26 23:55:34 +00:00
|
|
|
pccbb_cardbus_activate_resource(device_t brdev, device_t child, int type,
|
2001-08-27 00:09:42 +00:00
|
|
|
int rid, struct resource *res)
|
2000-10-18 03:25:13 +00:00
|
|
|
{
|
2001-08-27 00:09:42 +00:00
|
|
|
int ret;
|
2000-10-18 03:25:13 +00:00
|
|
|
|
2001-08-27 00:09:42 +00:00
|
|
|
ret = BUS_ACTIVATE_RESOURCE(device_get_parent(brdev), child,
|
|
|
|
type, rid, res);
|
2001-11-26 05:42:45 +00:00
|
|
|
if (ret != 0)
|
|
|
|
return (ret);
|
2001-08-27 00:09:42 +00:00
|
|
|
pccbb_cardbus_auto_open(device_get_softc(brdev), type);
|
2001-11-26 05:42:45 +00:00
|
|
|
return (0);
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2001-08-26 23:55:34 +00:00
|
|
|
pccbb_cardbus_deactivate_resource(device_t brdev, device_t child, int type,
|
2001-08-27 00:09:42 +00:00
|
|
|
int rid, struct resource *res)
|
2000-10-18 03:25:13 +00:00
|
|
|
{
|
2001-08-27 00:09:42 +00:00
|
|
|
int ret;
|
2000-10-18 03:25:13 +00:00
|
|
|
|
2001-08-27 00:09:42 +00:00
|
|
|
ret = BUS_DEACTIVATE_RESOURCE(device_get_parent(brdev), child,
|
|
|
|
type, rid, res);
|
2001-11-26 05:42:45 +00:00
|
|
|
if (ret != 0)
|
|
|
|
return (ret);
|
2001-08-27 00:09:42 +00:00
|
|
|
pccbb_cardbus_auto_open(device_get_softc(brdev), type);
|
2001-11-26 05:42:45 +00:00
|
|
|
return (0);
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
|
|
|
|
2001-08-26 23:55:34 +00:00
|
|
|
static struct resource *
|
|
|
|
pccbb_cardbus_alloc_resource(device_t brdev, device_t child, int type, int *rid,
|
2002-01-14 02:59:06 +00:00
|
|
|
u_long start, u_long end, u_long count, uint flags)
|
2000-10-18 03:25:13 +00:00
|
|
|
{
|
2001-08-27 00:09:42 +00:00
|
|
|
struct pccbb_softc *sc = device_get_softc(brdev);
|
|
|
|
struct pccbb_reslist *rle;
|
|
|
|
int tmp;
|
|
|
|
struct resource *res;
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case SYS_RES_IRQ:
|
|
|
|
tmp = rman_get_start(sc->sc_irq_res);
|
|
|
|
if (start > tmp || end < tmp || count != 1) {
|
|
|
|
device_printf(child, "requested interrupt %ld-%ld,"
|
|
|
|
"count = %ld not supported by pccbb\n",
|
|
|
|
start, end, count);
|
2001-11-26 05:42:45 +00:00
|
|
|
return (NULL);
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
2001-08-27 00:09:42 +00:00
|
|
|
start = end = tmp;
|
|
|
|
break;
|
|
|
|
case SYS_RES_IOPORT:
|
2001-11-26 02:11:22 +00:00
|
|
|
if (start <= PCCBB_START_IO)
|
|
|
|
start = PCCBB_START_IO;
|
2001-08-27 00:09:42 +00:00
|
|
|
if (end < start)
|
|
|
|
end = start;
|
|
|
|
break;
|
|
|
|
case SYS_RES_MEMORY:
|
2001-11-26 07:17:09 +00:00
|
|
|
if (start <= pccbb_start_mem)
|
|
|
|
start = pccbb_start_mem;
|
2001-08-27 00:09:42 +00:00
|
|
|
if (end < start)
|
|
|
|
end = start;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
res = BUS_ALLOC_RESOURCE(device_get_parent(brdev), child, type, rid,
|
|
|
|
start, end, count, flags & ~RF_ACTIVE);
|
|
|
|
if (res == NULL) {
|
|
|
|
printf("pccbb alloc res fail\n");
|
2001-11-26 05:42:45 +00:00
|
|
|
return (NULL);
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
2001-08-27 00:09:42 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Need to record allocated resource so we can iterate through
|
|
|
|
* it later.
|
|
|
|
*/
|
|
|
|
rle = malloc(sizeof(struct pccbb_reslist), M_DEVBUF, M_NOWAIT);
|
|
|
|
if (!res)
|
|
|
|
panic("pccbb_cardbus_alloc_resource: can't record entry!");
|
|
|
|
rle->res = res;
|
|
|
|
rle->type = type;
|
|
|
|
rle->rid = *rid;
|
|
|
|
rle->cardaddr = 0;
|
|
|
|
SLIST_INSERT_HEAD(&sc->rl, rle, link);
|
|
|
|
|
|
|
|
if (flags & RF_ACTIVE)
|
|
|
|
if (bus_activate_resource(child, type, *rid, res) != 0) {
|
|
|
|
bus_release_resource(child, type, *rid, res);
|
2001-11-26 05:42:45 +00:00
|
|
|
return (NULL);
|
2001-08-27 00:09:42 +00:00
|
|
|
}
|
|
|
|
|
2001-11-26 05:42:45 +00:00
|
|
|
return (res);
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2001-08-26 23:55:34 +00:00
|
|
|
pccbb_cardbus_release_resource(device_t brdev, device_t child, int type,
|
2001-08-27 00:09:42 +00:00
|
|
|
int rid, struct resource *res)
|
2000-10-18 03:25:13 +00:00
|
|
|
{
|
2001-08-27 00:09:42 +00:00
|
|
|
struct pccbb_softc *sc = device_get_softc(brdev);
|
|
|
|
struct pccbb_reslist *rle;
|
2001-11-26 05:42:45 +00:00
|
|
|
int error;
|
2001-08-27 00:09:42 +00:00
|
|
|
|
|
|
|
if (rman_get_flags(res) & RF_ACTIVE) {
|
|
|
|
error = bus_deactivate_resource(child, type, rid, res);
|
|
|
|
if (error != 0)
|
2001-11-26 05:42:45 +00:00
|
|
|
return (error);
|
2001-08-27 00:09:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SLIST_FOREACH(rle, &sc->rl, link) {
|
|
|
|
if (rle->res == res) {
|
|
|
|
SLIST_REMOVE(&sc->rl, rle, pccbb_reslist, link);
|
|
|
|
free(rle, M_DEVBUF);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-11-26 05:42:45 +00:00
|
|
|
return (BUS_RELEASE_RESOURCE(device_get_parent(brdev), child,
|
|
|
|
type, rid, res));
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************************/
|
2000-11-28 00:05:20 +00:00
|
|
|
/* PC Card Power Functions */
|
|
|
|
/************************************************************************/
|
|
|
|
|
|
|
|
static int
|
2001-08-26 23:55:34 +00:00
|
|
|
pccbb_pcic_power_enable_socket(device_t brdev, device_t child)
|
2000-11-28 00:05:20 +00:00
|
|
|
{
|
2001-08-26 23:55:34 +00:00
|
|
|
struct pccbb_softc *sc = device_get_softc(brdev);
|
2001-11-26 05:42:45 +00:00
|
|
|
int voltage;
|
|
|
|
int cardtype;
|
|
|
|
int win;
|
2000-11-28 00:05:20 +00:00
|
|
|
|
|
|
|
DPRINTF(("pccbb_pcic_socket_enable:\n"));
|
|
|
|
|
|
|
|
/* power down/up the socket to reset */
|
2001-11-26 05:42:45 +00:00
|
|
|
voltage = pccbb_detect_voltage(brdev);
|
|
|
|
|
|
|
|
pccbb_power(brdev, CARD_VCC_0V | CARD_VPP_0V);
|
|
|
|
if (voltage & CARD_5V_CARD)
|
|
|
|
pccbb_power(brdev, CARD_VCC_5V | CARD_VPP_VCC);
|
|
|
|
else if (voltage & CARD_3V_CARD)
|
|
|
|
pccbb_power(brdev, CARD_VCC_3V | CARD_VPP_VCC);
|
|
|
|
else {
|
|
|
|
device_printf(brdev, "Unknown card voltage\n");
|
|
|
|
return (ENXIO);
|
2000-11-28 00:05:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* enable socket i/o */
|
|
|
|
PCIC_MASK(sc, PCIC_PWRCTL, | PCIC_PWRCTL_OE);
|
|
|
|
|
|
|
|
PCIC_WRITE(sc, PCIC_INTR, PCIC_INTR_ENABLE);
|
|
|
|
/* hold reset for 30ms */
|
|
|
|
DELAY(30*1000);
|
|
|
|
/* clear the reset flag */
|
|
|
|
PCIC_MASK(sc, PCIC_INTR, | PCIC_INTR_RESET);
|
|
|
|
/* wait 20ms as per pc card standard (r2.01) section 4.3.6 */
|
|
|
|
DELAY(20*1000);
|
|
|
|
|
|
|
|
pccbb_pcic_wait_ready(sc);
|
|
|
|
|
|
|
|
/* disable all address windows */
|
|
|
|
PCIC_WRITE(sc, PCIC_ADDRWIN_ENABLE, 0);
|
|
|
|
|
2001-11-26 05:42:45 +00:00
|
|
|
CARD_GET_TYPE(child, &cardtype);
|
|
|
|
PCIC_MASK(sc, PCIC_INTR, | ((cardtype == PCCARD_IFTYPE_IO) ?
|
|
|
|
PCIC_INTR_CARDTYPE_IO : PCIC_INTR_CARDTYPE_MEM));
|
|
|
|
DEVPRINTF((sc->sc_dev, "card type is %s\n",
|
|
|
|
(cardtype == PCCARD_IFTYPE_IO) ? "io" : "mem"));
|
2000-11-28 00:05:20 +00:00
|
|
|
|
|
|
|
/* reinstall all the memory and io mappings */
|
2001-11-26 05:42:45 +00:00
|
|
|
for (win = 0; win < PCIC_MEM_WINS; ++win) {
|
|
|
|
if (sc->memalloc & (1 << win)) {
|
|
|
|
pccbb_pcic_do_mem_map(sc, win);
|
2000-11-28 00:05:20 +00:00
|
|
|
}
|
2001-11-26 05:42:45 +00:00
|
|
|
}
|
|
|
|
for (win = 0; win < PCIC_IO_WINS; ++win) {
|
|
|
|
if (sc->ioalloc & (1 << win)) {
|
|
|
|
pccbb_pcic_do_io_map(sc, win);
|
2000-11-28 00:05:20 +00:00
|
|
|
}
|
|
|
|
}
|
2001-11-26 05:42:45 +00:00
|
|
|
return (0);
|
2000-11-28 00:05:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2001-08-26 23:55:34 +00:00
|
|
|
pccbb_pcic_power_disable_socket(device_t brdev, device_t child)
|
2000-11-28 00:05:20 +00:00
|
|
|
{
|
2001-08-26 23:55:34 +00:00
|
|
|
struct pccbb_softc *sc = device_get_softc(brdev);
|
2000-11-28 00:05:20 +00:00
|
|
|
|
|
|
|
DPRINTF(("pccbb_pcic_socket_disable\n"));
|
|
|
|
|
|
|
|
/* reset signal asserting... */
|
|
|
|
PCIC_MASK(sc, PCIC_INTR, & ~PCIC_INTR_RESET);
|
|
|
|
DELAY(2*1000);
|
|
|
|
|
|
|
|
/* power down the socket */
|
2001-08-26 23:55:34 +00:00
|
|
|
pccbb_power(brdev, CARD_VCC_0V | CARD_VPP_0V);
|
2001-08-27 00:09:42 +00:00
|
|
|
PCIC_MASK(sc, PCIC_PWRCTL, &~PCIC_PWRCTL_OE);
|
2000-11-28 00:05:20 +00:00
|
|
|
|
|
|
|
/* wait 300ms until power fails (Tpf). */
|
|
|
|
DELAY(300 * 1000);
|
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************************/
|
|
|
|
/* PC Card Resource Functions */
|
2000-10-18 03:25:13 +00:00
|
|
|
/************************************************************************/
|
|
|
|
|
|
|
|
static void
|
|
|
|
pccbb_pcic_wait_ready(struct pccbb_softc *sc)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
DEVPRINTF((sc->sc_dev, "pccbb_pcic_wait_ready: status 0x%02x\n",
|
2001-08-26 23:55:34 +00:00
|
|
|
PCIC_READ(sc, PCIC_IF_STATUS)));
|
2000-10-18 03:25:13 +00:00
|
|
|
for (i = 0; i < 10000; i++) {
|
|
|
|
if (PCIC_READ(sc, PCIC_IF_STATUS) & PCIC_IF_STATUS_READY) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
DELAY(500);
|
|
|
|
}
|
|
|
|
device_printf(sc->sc_dev, "ready never happened, status = %02x\n",
|
2001-08-26 23:55:34 +00:00
|
|
|
PCIC_READ(sc, PCIC_IF_STATUS));
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
|
|
|
|
2001-08-26 23:55:34 +00:00
|
|
|
#define PCIC_MEMINFO(NUM) { \
|
|
|
|
PCIC_SYSMEM_ADDR ## NUM ## _START_LSB, \
|
|
|
|
PCIC_SYSMEM_ADDR ## NUM ## _START_MSB, \
|
|
|
|
PCIC_SYSMEM_ADDR ## NUM ## _STOP_LSB, \
|
|
|
|
PCIC_SYSMEM_ADDR ## NUM ## _STOP_MSB, \
|
|
|
|
PCIC_SYSMEM_ADDR ## NUM ## _WIN, \
|
|
|
|
PCIC_CARDMEM_ADDR ## NUM ## _LSB, \
|
|
|
|
PCIC_CARDMEM_ADDR ## NUM ## _MSB, \
|
|
|
|
PCIC_ADDRWIN_ENABLE_MEM ## NUM ##, \
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct mem_map_index_st {
|
2001-08-26 23:55:34 +00:00
|
|
|
int sysmem_start_lsb;
|
|
|
|
int sysmem_start_msb;
|
|
|
|
int sysmem_stop_lsb;
|
|
|
|
int sysmem_stop_msb;
|
|
|
|
int sysmem_win;
|
|
|
|
int cardmem_lsb;
|
|
|
|
int cardmem_msb;
|
|
|
|
int memenable;
|
2000-10-18 03:25:13 +00:00
|
|
|
} mem_map_index[] = {
|
|
|
|
PCIC_MEMINFO(0),
|
|
|
|
PCIC_MEMINFO(1),
|
|
|
|
PCIC_MEMINFO(2),
|
|
|
|
PCIC_MEMINFO(3),
|
|
|
|
PCIC_MEMINFO(4),
|
|
|
|
};
|
2001-08-26 23:55:34 +00:00
|
|
|
#undef PCIC_MEMINFO
|
2000-10-18 03:25:13 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
pccbb_pcic_do_mem_map(struct pccbb_softc *sc, int win)
|
|
|
|
{
|
|
|
|
PCIC_WRITE(sc, mem_map_index[win].sysmem_start_lsb,
|
2001-08-26 23:55:34 +00:00
|
|
|
(sc->mem[win].addr >> PCIC_SYSMEM_ADDRX_SHIFT) & 0xff);
|
2000-10-18 03:25:13 +00:00
|
|
|
PCIC_WRITE(sc, mem_map_index[win].sysmem_start_msb,
|
2001-08-26 23:55:34 +00:00
|
|
|
((sc->mem[win].addr >> (PCIC_SYSMEM_ADDRX_SHIFT + 8)) &
|
|
|
|
PCIC_SYSMEM_ADDRX_START_MSB_ADDR_MASK) | 0x80);
|
2000-10-18 03:25:13 +00:00
|
|
|
|
|
|
|
PCIC_WRITE(sc, mem_map_index[win].sysmem_stop_lsb,
|
2001-08-26 23:55:34 +00:00
|
|
|
((sc->mem[win].addr + sc->mem[win].realsize - 1) >>
|
|
|
|
PCIC_SYSMEM_ADDRX_SHIFT) & 0xff);
|
2000-10-18 03:25:13 +00:00
|
|
|
PCIC_WRITE(sc, mem_map_index[win].sysmem_stop_msb,
|
2001-08-26 23:55:34 +00:00
|
|
|
(((sc->mem[win].addr + sc->mem[win].realsize - 1) >>
|
|
|
|
(PCIC_SYSMEM_ADDRX_SHIFT + 8)) &
|
|
|
|
PCIC_SYSMEM_ADDRX_STOP_MSB_ADDR_MASK) |
|
|
|
|
PCIC_SYSMEM_ADDRX_STOP_MSB_WAIT2);
|
2000-10-18 03:25:13 +00:00
|
|
|
|
2001-01-06 18:04:55 +00:00
|
|
|
PCIC_WRITE(sc, mem_map_index[win].sysmem_win,
|
2001-08-26 23:55:34 +00:00
|
|
|
(sc->mem[win].addr >> PCIC_MEMREG_WIN_SHIFT) & 0xff);
|
2001-01-06 18:04:55 +00:00
|
|
|
|
2000-10-18 03:25:13 +00:00
|
|
|
PCIC_WRITE(sc, mem_map_index[win].cardmem_lsb,
|
2001-08-26 23:55:34 +00:00
|
|
|
(sc->mem[win].offset >> PCIC_CARDMEM_ADDRX_SHIFT) & 0xff);
|
2000-10-18 03:25:13 +00:00
|
|
|
PCIC_WRITE(sc, mem_map_index[win].cardmem_msb,
|
2001-08-26 23:55:34 +00:00
|
|
|
((sc->mem[win].offset >> (PCIC_CARDMEM_ADDRX_SHIFT + 8)) &
|
|
|
|
PCIC_CARDMEM_ADDRX_MSB_ADDR_MASK) |
|
|
|
|
((sc->mem[win].kind == PCCARD_MEM_ATTR) ?
|
|
|
|
PCIC_CARDMEM_ADDRX_MSB_REGACTIVE_ATTR : 0));
|
2000-10-18 03:25:13 +00:00
|
|
|
|
2001-08-26 23:55:34 +00:00
|
|
|
PCIC_MASK(sc, PCIC_ADDRWIN_ENABLE, | PCIC_ADDRWIN_ENABLE_MEMCS16 |
|
|
|
|
mem_map_index[win].memenable);
|
2000-10-18 03:25:13 +00:00
|
|
|
|
|
|
|
DELAY(100);
|
|
|
|
|
|
|
|
#ifdef CBB_DEBUG
|
|
|
|
{
|
2001-01-06 18:04:55 +00:00
|
|
|
int r1, r2, r3, r4, r5, r6, r7;
|
2000-10-18 03:25:13 +00:00
|
|
|
r1 = PCIC_READ(sc, mem_map_index[win].sysmem_start_msb);
|
|
|
|
r2 = PCIC_READ(sc, mem_map_index[win].sysmem_start_lsb);
|
|
|
|
r3 = PCIC_READ(sc, mem_map_index[win].sysmem_stop_msb);
|
|
|
|
r4 = PCIC_READ(sc, mem_map_index[win].sysmem_stop_lsb);
|
|
|
|
r5 = PCIC_READ(sc, mem_map_index[win].cardmem_msb);
|
|
|
|
r6 = PCIC_READ(sc, mem_map_index[win].cardmem_lsb);
|
2001-01-06 18:04:55 +00:00
|
|
|
r7 = PCIC_READ(sc, mem_map_index[win].sysmem_win);
|
2000-10-18 03:25:13 +00:00
|
|
|
DPRINTF(("pccbb_pcic_do_mem_map window %d: %02x%02x %02x%02x "
|
2001-08-26 23:55:34 +00:00
|
|
|
"%02x%02x %02x (%08x+%08x.%08x*%08lx)\n",
|
|
|
|
win, r1, r2, r3, r4, r5, r6, r7,
|
|
|
|
sc->mem[win].addr, sc->mem[win].size, sc->mem[win].realsize,
|
|
|
|
sc->mem[win].offset));
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2001-08-27 00:09:42 +00:00
|
|
|
pccbb_pcic_mem_map(struct pccbb_softc *sc, int kind, struct resource *res)
|
2000-10-18 03:25:13 +00:00
|
|
|
{
|
2001-08-27 00:09:42 +00:00
|
|
|
int win;
|
|
|
|
struct pccbb_reslist *rle;
|
|
|
|
bus_addr_t card_addr;
|
2000-10-18 03:25:13 +00:00
|
|
|
|
2001-08-27 00:09:42 +00:00
|
|
|
for (win = 0; win < PCIC_MEM_WINS; win++) {
|
|
|
|
if ((sc->memalloc & (1 << win)) == 0) {
|
|
|
|
sc->memalloc |= (1 << win);
|
2000-10-18 03:25:13 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2001-08-27 00:09:42 +00:00
|
|
|
if (win >= PCIC_MEM_WINS)
|
2000-10-18 03:25:13 +00:00
|
|
|
return (1);
|
|
|
|
|
2001-08-27 00:09:42 +00:00
|
|
|
SLIST_FOREACH(rle, &sc->rl, link) {
|
|
|
|
if (rle->res == res)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!rle) {
|
|
|
|
device_printf(sc->sc_dev,
|
|
|
|
"pcic_map_mem: Memory resource not found\n");
|
2001-11-26 05:42:45 +00:00
|
|
|
return (ENXIO);
|
2001-08-27 00:09:42 +00:00
|
|
|
}
|
|
|
|
card_addr = rle->cardaddr - rle->cardaddr % PCIC_MEM_PAGESIZE;
|
|
|
|
sc->mem[win].memt = rman_get_bustag(res);
|
|
|
|
sc->mem[win].memh = rman_get_bushandle(res);
|
|
|
|
sc->mem[win].addr = rman_get_start(res);
|
|
|
|
sc->mem[win].size = rman_get_end(res) - sc->mem[win].addr + 1;
|
|
|
|
sc->mem[win].realsize = sc->mem[win].size + PCIC_MEM_PAGESIZE - 1;
|
|
|
|
sc->mem[win].realsize = sc->mem[win].realsize -
|
|
|
|
(sc->mem[win].realsize % PCIC_MEM_PAGESIZE);
|
|
|
|
sc->mem[win].offset = ((long)card_addr) -
|
|
|
|
((long)(sc->mem[win].addr));
|
|
|
|
sc->mem[win].kind = kind;
|
2000-10-18 03:25:13 +00:00
|
|
|
|
|
|
|
DPRINTF(("pccbb_pcic_mem_map window %d bus %x+%x+%lx card addr %x\n",
|
2001-08-27 00:09:42 +00:00
|
|
|
win, sc->mem[win].addr, sc->mem[win].size,
|
|
|
|
sc->mem[win].offset, card_addr));
|
2000-10-18 03:25:13 +00:00
|
|
|
|
2001-08-27 00:09:42 +00:00
|
|
|
pccbb_pcic_do_mem_map(sc, win);
|
2000-10-18 03:25:13 +00:00
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
pccbb_pcic_mem_unmap(struct pccbb_softc *sc, int window)
|
|
|
|
{
|
|
|
|
if (window >= PCIC_MEM_WINS)
|
|
|
|
panic("pccbb_pcic_mem_unmap: window out of range");
|
|
|
|
|
|
|
|
PCIC_MASK(sc, PCIC_ADDRWIN_ENABLE, & ~mem_map_index[window].memenable);
|
|
|
|
sc->memalloc &= ~(1 << window);
|
|
|
|
}
|
|
|
|
|
2001-08-27 00:09:42 +00:00
|
|
|
static int
|
|
|
|
pccbb_pcic_mem_findmap(struct pccbb_softc *sc, struct resource *res)
|
|
|
|
{
|
|
|
|
int win;
|
|
|
|
|
|
|
|
for (win = 0; win < PCIC_MEM_WINS; win++) {
|
|
|
|
if (sc->mem[win].memt == rman_get_bustag(res) &&
|
|
|
|
sc->mem[win].addr == rman_get_start(res) &&
|
|
|
|
sc->mem[win].size == rman_get_size(res))
|
2001-11-26 05:42:45 +00:00
|
|
|
return (win);
|
2001-08-27 00:09:42 +00:00
|
|
|
}
|
|
|
|
device_printf(sc->sc_dev, "Memory map not found!\n");
|
2001-11-26 05:42:45 +00:00
|
|
|
return (-1);
|
2001-08-27 00:09:42 +00:00
|
|
|
}
|
|
|
|
|
2001-08-26 23:55:34 +00:00
|
|
|
#define PCIC_IOINFO(NUM) { \
|
|
|
|
PCIC_IOADDR ## NUM ## _START_LSB, \
|
|
|
|
PCIC_IOADDR ## NUM ## _START_MSB, \
|
|
|
|
PCIC_IOADDR ## NUM ## _STOP_LSB, \
|
|
|
|
PCIC_IOADDR ## NUM ## _STOP_MSB, \
|
|
|
|
PCIC_ADDRWIN_ENABLE_IO ## NUM ##, \
|
|
|
|
PCIC_IOCTL_IO ## NUM ## _WAITSTATE \
|
|
|
|
| PCIC_IOCTL_IO ## NUM ## _ZEROWAIT \
|
|
|
|
| PCIC_IOCTL_IO ## NUM ## _IOCS16SRC_MASK \
|
|
|
|
| PCIC_IOCTL_IO ## NUM ## _DATASIZE_MASK, \
|
|
|
|
{ \
|
|
|
|
PCIC_IOCTL_IO ## NUM ## _IOCS16SRC_CARD, \
|
|
|
|
PCIC_IOCTL_IO ## NUM ## _IOCS16SRC_DATASIZE \
|
|
|
|
| PCIC_IOCTL_IO ## NUM ## _DATASIZE_8BIT, \
|
|
|
|
PCIC_IOCTL_IO ## NUM ## _IOCS16SRC_DATASIZE \
|
|
|
|
| PCIC_IOCTL_IO ## NUM ## _DATASIZE_16BIT, \
|
|
|
|
} \
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct io_map_index_st {
|
2001-08-26 23:55:34 +00:00
|
|
|
int start_lsb;
|
|
|
|
int start_msb;
|
|
|
|
int stop_lsb;
|
|
|
|
int stop_msb;
|
|
|
|
int ioenable;
|
|
|
|
int ioctlmask;
|
|
|
|
int ioctlbits[3]; /* indexed by PCCARD_WIDTH_* */
|
2000-10-18 03:25:13 +00:00
|
|
|
} io_map_index[] = {
|
|
|
|
PCIC_IOINFO(0),
|
|
|
|
PCIC_IOINFO(1),
|
|
|
|
};
|
2001-08-26 23:55:34 +00:00
|
|
|
#undef PCIC_IOINFO
|
2000-10-18 03:25:13 +00:00
|
|
|
|
2001-08-26 23:55:34 +00:00
|
|
|
static void
|
|
|
|
pccbb_pcic_do_io_map(struct pccbb_softc *sc, int win)
|
2000-10-18 03:25:13 +00:00
|
|
|
{
|
|
|
|
PCIC_WRITE(sc, io_map_index[win].start_lsb, sc->io[win].addr & 0xff);
|
|
|
|
PCIC_WRITE(sc, io_map_index[win].start_msb,
|
2001-08-26 23:55:34 +00:00
|
|
|
(sc->io[win].addr >> 8) & 0xff);
|
2000-10-18 03:25:13 +00:00
|
|
|
|
|
|
|
PCIC_WRITE(sc, io_map_index[win].stop_lsb,
|
2001-08-26 23:55:34 +00:00
|
|
|
(sc->io[win].addr + sc->io[win].size - 1) & 0xff);
|
2000-10-18 03:25:13 +00:00
|
|
|
PCIC_WRITE(sc, io_map_index[win].stop_msb,
|
2001-08-26 23:55:34 +00:00
|
|
|
((sc->io[win].addr + sc->io[win].size - 1) >> 8) & 0xff);
|
2000-10-18 03:25:13 +00:00
|
|
|
|
|
|
|
PCIC_MASK2(sc, PCIC_IOCTL,
|
2001-08-26 23:55:34 +00:00
|
|
|
& ~io_map_index[win].ioctlmask,
|
|
|
|
| io_map_index[win].ioctlbits[sc->io[win].width]);
|
2000-10-18 03:25:13 +00:00
|
|
|
|
|
|
|
PCIC_MASK(sc, PCIC_ADDRWIN_ENABLE, | io_map_index[win].ioenable);
|
2001-01-06 18:04:55 +00:00
|
|
|
#ifdef CBB_DEBUG
|
|
|
|
{
|
|
|
|
int r1, r2, r3, r4;
|
|
|
|
r1 = PCIC_READ(sc, io_map_index[win].start_msb);
|
|
|
|
r2 = PCIC_READ(sc, io_map_index[win].start_lsb);
|
|
|
|
r3 = PCIC_READ(sc, io_map_index[win].stop_msb);
|
|
|
|
r4 = PCIC_READ(sc, io_map_index[win].stop_lsb);
|
|
|
|
DPRINTF(("pccbb_pcic_do_io_map window %d: %02x%02x %02x%02x "
|
2001-08-26 23:55:34 +00:00
|
|
|
"(%08x+%08x)\n", win, r1, r2, r3, r4,
|
|
|
|
sc->io[win].addr, sc->io[win].size));
|
2001-01-06 18:04:55 +00:00
|
|
|
}
|
|
|
|
#endif
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2001-08-27 00:09:42 +00:00
|
|
|
pccbb_pcic_io_map(struct pccbb_softc *sc, int width, struct resource *r)
|
2000-10-18 03:25:13 +00:00
|
|
|
{
|
2001-08-27 00:09:42 +00:00
|
|
|
int win;
|
2000-10-18 03:25:13 +00:00
|
|
|
#ifdef CBB_DEBUG
|
|
|
|
static char *width_names[] = { "auto", "io8", "io16"};
|
|
|
|
#endif
|
|
|
|
|
2001-08-27 00:09:42 +00:00
|
|
|
for (win=0; win < PCIC_IO_WINS; win++) {
|
|
|
|
if ((sc->ioalloc & (1 << win)) == 0) {
|
|
|
|
sc->ioalloc |= (1 << win);
|
2000-10-18 03:25:13 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2001-08-27 00:09:42 +00:00
|
|
|
if (win >= PCIC_IO_WINS)
|
2000-10-18 03:25:13 +00:00
|
|
|
return (1);
|
|
|
|
|
2001-08-27 00:09:42 +00:00
|
|
|
sc->io[win].iot = rman_get_bustag(r);
|
|
|
|
sc->io[win].ioh = rman_get_bushandle(r);
|
|
|
|
sc->io[win].addr = rman_get_start(r);
|
|
|
|
sc->io[win].size = rman_get_end(r) - sc->io[win].addr + 1;
|
|
|
|
sc->io[win].flags = 0;
|
|
|
|
sc->io[win].width = width;
|
2000-10-18 03:25:13 +00:00
|
|
|
|
|
|
|
DPRINTF(("pccbb_pcic_io_map window %d %s port %x+%x\n",
|
2001-08-27 00:09:42 +00:00
|
|
|
win, width_names[width], sc->io[win].addr,
|
|
|
|
sc->io[win].size));
|
2000-10-18 03:25:13 +00:00
|
|
|
|
2001-08-27 00:09:42 +00:00
|
|
|
pccbb_pcic_do_io_map(sc, win);
|
2000-10-18 03:25:13 +00:00
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
pccbb_pcic_io_unmap(struct pccbb_softc *sc, int window)
|
|
|
|
{
|
|
|
|
if (window >= PCIC_IO_WINS)
|
|
|
|
panic("pccbb_pcic_io_unmap: window out of range");
|
|
|
|
|
|
|
|
PCIC_MASK(sc, PCIC_ADDRWIN_ENABLE, & ~io_map_index[window].ioenable);
|
|
|
|
|
|
|
|
sc->ioalloc &= ~(1 << window);
|
|
|
|
|
|
|
|
sc->io[window].iot = 0;
|
|
|
|
sc->io[window].ioh = 0;
|
|
|
|
sc->io[window].addr = 0;
|
|
|
|
sc->io[window].size = 0;
|
|
|
|
sc->io[window].flags = 0;
|
|
|
|
sc->io[window].width = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2001-08-27 00:09:42 +00:00
|
|
|
pccbb_pcic_io_findmap(struct pccbb_softc *sc, struct resource *res)
|
2000-10-18 03:25:13 +00:00
|
|
|
{
|
|
|
|
int win;
|
2001-01-06 18:04:55 +00:00
|
|
|
|
2001-08-27 00:09:42 +00:00
|
|
|
for (win = 0; win < PCIC_IO_WINS; win++) {
|
|
|
|
if (sc->io[win].iot == rman_get_bustag(res) &&
|
|
|
|
sc->io[win].addr == rman_get_start(res) &&
|
|
|
|
sc->io[win].size == rman_get_size(res))
|
2001-11-26 05:42:45 +00:00
|
|
|
return (win);
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
2001-08-27 00:09:42 +00:00
|
|
|
device_printf(sc->sc_dev, "IO map not found!\n");
|
2001-11-26 05:42:45 +00:00
|
|
|
return (-1);
|
2001-08-27 00:09:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
pccbb_pcic_activate_resource(device_t brdev, device_t child, int type, int rid,
|
|
|
|
struct resource *res)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
struct pccbb_softc *sc = device_get_softc(brdev);
|
|
|
|
if (!(rman_get_flags(res) & RF_ACTIVE)) { /* not already activated */
|
|
|
|
switch (type) {
|
|
|
|
case SYS_RES_IOPORT:
|
|
|
|
err = pccbb_pcic_io_map(sc, 0, res);
|
|
|
|
break;
|
|
|
|
case SYS_RES_MEMORY:
|
|
|
|
err = pccbb_pcic_mem_map(sc, 0, res);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
err = 0;
|
2000-10-18 03:25:13 +00:00
|
|
|
break;
|
|
|
|
}
|
2001-08-27 00:09:42 +00:00
|
|
|
if (err)
|
2001-11-26 05:42:45 +00:00
|
|
|
return (err);
|
2001-08-27 00:09:42 +00:00
|
|
|
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
2001-11-26 05:42:45 +00:00
|
|
|
return (BUS_ACTIVATE_RESOURCE(device_get_parent(brdev), child,
|
|
|
|
type, rid, res));
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2001-08-26 23:55:34 +00:00
|
|
|
pccbb_pcic_deactivate_resource(device_t brdev, device_t child, int type,
|
2001-08-27 00:09:42 +00:00
|
|
|
int rid, struct resource *res)
|
2000-10-18 03:25:13 +00:00
|
|
|
{
|
2001-08-26 23:55:34 +00:00
|
|
|
struct pccbb_softc *sc = device_get_softc(brdev);
|
2000-10-18 03:25:13 +00:00
|
|
|
int win;
|
2001-08-27 00:09:42 +00:00
|
|
|
|
|
|
|
if (rman_get_flags(res) & RF_ACTIVE) { /* if activated */
|
|
|
|
switch (type) {
|
|
|
|
case SYS_RES_IOPORT:
|
|
|
|
win = pccbb_pcic_io_findmap(sc, res);
|
|
|
|
if (win >= 0)
|
|
|
|
pccbb_pcic_io_unmap(sc, win);
|
|
|
|
else
|
2001-11-26 05:42:45 +00:00
|
|
|
return (ENOENT);
|
2001-08-27 00:09:42 +00:00
|
|
|
break;
|
|
|
|
case SYS_RES_MEMORY:
|
|
|
|
win = pccbb_pcic_mem_findmap(sc, res);
|
|
|
|
if (win >= 0)
|
|
|
|
pccbb_pcic_mem_unmap(sc, win);
|
|
|
|
else
|
2001-11-26 05:42:45 +00:00
|
|
|
return (ENOENT);
|
2000-10-18 03:25:13 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2001-11-26 05:42:45 +00:00
|
|
|
return (BUS_DEACTIVATE_RESOURCE(device_get_parent(brdev), child,
|
|
|
|
type, rid, res));
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
|
|
|
|
2001-08-26 23:55:34 +00:00
|
|
|
static struct resource *
|
|
|
|
pccbb_pcic_alloc_resource(device_t brdev, device_t child, int type, int *rid,
|
2002-01-14 02:59:06 +00:00
|
|
|
u_long start, u_long end, u_long count, uint flags)
|
2000-10-18 03:25:13 +00:00
|
|
|
{
|
2001-08-27 00:09:42 +00:00
|
|
|
struct resource *res = NULL;
|
2001-08-26 23:55:34 +00:00
|
|
|
struct pccbb_softc *sc = device_get_softc(brdev);
|
2000-10-18 03:25:13 +00:00
|
|
|
struct pccbb_reslist *rle;
|
2001-08-27 00:09:42 +00:00
|
|
|
int tmp;
|
2000-10-18 03:25:13 +00:00
|
|
|
|
2001-01-06 18:04:55 +00:00
|
|
|
if ((sc->sc_flags & PCCBB_PCIC_MEM_32) == 0) {
|
2001-08-26 23:55:34 +00:00
|
|
|
/* XXX: how do we do this? */
|
2001-01-06 18:04:55 +00:00
|
|
|
panic("PCCBB bridge cannot handle non MEM_32 bridges\n");
|
2000-11-28 00:05:20 +00:00
|
|
|
}
|
|
|
|
|
2000-10-22 04:37:57 +00:00
|
|
|
switch (type) {
|
|
|
|
case SYS_RES_MEMORY:
|
2001-11-26 07:17:09 +00:00
|
|
|
if (start < pccbb_start_mem)
|
|
|
|
start = pccbb_start_mem;
|
2001-08-27 00:09:42 +00:00
|
|
|
if (end < start)
|
|
|
|
end = start;
|
2001-08-26 23:55:34 +00:00
|
|
|
flags = (flags & ~RF_ALIGNMENT_MASK) |
|
|
|
|
rman_make_alignment_flags(PCCBB_MEMALIGN);
|
2000-10-22 04:37:57 +00:00
|
|
|
break;
|
|
|
|
case SYS_RES_IOPORT:
|
|
|
|
if (start < 0x100)
|
|
|
|
start = 0x100; /* XXX tweakable? */
|
|
|
|
if (end < start)
|
|
|
|
end = start;
|
|
|
|
break;
|
|
|
|
case SYS_RES_IRQ:
|
2001-08-27 00:09:42 +00:00
|
|
|
tmp = rman_get_start(sc->sc_irq_res);
|
|
|
|
if (start > tmp || end < tmp || count != 1) {
|
|
|
|
device_printf(child, "requested interrupt %ld-%ld,"
|
|
|
|
"count = %ld not supported by pccbb\n",
|
|
|
|
start, end, count);
|
2001-11-26 05:42:45 +00:00
|
|
|
return (NULL);
|
2001-08-27 00:09:42 +00:00
|
|
|
}
|
2000-10-22 04:37:57 +00:00
|
|
|
flags |= RF_SHAREABLE;
|
|
|
|
start = end = rman_get_start(sc->sc_irq_res);
|
|
|
|
break;
|
|
|
|
}
|
2001-08-27 00:09:42 +00:00
|
|
|
res = BUS_ALLOC_RESOURCE(device_get_parent(brdev), child, type, rid,
|
|
|
|
start, end, count, flags & ~RF_ACTIVE);
|
|
|
|
if (res == NULL)
|
2001-11-26 05:42:45 +00:00
|
|
|
return (NULL);
|
2000-10-18 03:25:13 +00:00
|
|
|
|
2001-08-27 00:09:42 +00:00
|
|
|
rle = malloc(sizeof(struct pccbb_reslist), M_DEVBUF, M_NOWAIT);
|
|
|
|
if (!rle)
|
|
|
|
panic("pccbb_pcic_alloc_resource: can't record entry!");
|
|
|
|
rle->res = res;
|
2000-10-18 03:25:13 +00:00
|
|
|
rle->type = type;
|
|
|
|
rle->rid = *rid;
|
2001-08-27 00:09:42 +00:00
|
|
|
rle->cardaddr = 0;
|
|
|
|
SLIST_INSERT_HEAD(&sc->rl, rle, link);
|
2000-10-18 03:25:13 +00:00
|
|
|
|
|
|
|
if (flags & RF_ACTIVE) {
|
2001-08-27 00:09:42 +00:00
|
|
|
if (bus_activate_resource(child, type, *rid, res) != 0) {
|
|
|
|
bus_release_resource(child, type, *rid, res);
|
2001-11-26 05:42:45 +00:00
|
|
|
return (NULL);
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-11-26 05:42:45 +00:00
|
|
|
return (res);
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2001-08-26 23:55:34 +00:00
|
|
|
pccbb_pcic_release_resource(device_t brdev, device_t child, int type,
|
|
|
|
int rid, struct resource *res)
|
2000-10-18 03:25:13 +00:00
|
|
|
{
|
2001-08-26 23:55:34 +00:00
|
|
|
struct pccbb_softc *sc = device_get_softc(brdev);
|
2000-10-18 03:25:13 +00:00
|
|
|
struct pccbb_reslist *rle;
|
2001-11-26 05:42:45 +00:00
|
|
|
int error;
|
2001-01-06 18:04:55 +00:00
|
|
|
|
|
|
|
if (rman_get_flags(res) & RF_ACTIVE) {
|
|
|
|
error = bus_deactivate_resource(child, type, rid, res);
|
|
|
|
if (error != 0)
|
2001-11-26 05:42:45 +00:00
|
|
|
return (error);
|
2001-01-06 18:04:55 +00:00
|
|
|
}
|
2000-10-18 03:25:13 +00:00
|
|
|
|
2001-08-27 00:09:42 +00:00
|
|
|
SLIST_FOREACH(rle, &sc->rl, link) {
|
|
|
|
if (rle->res == res) {
|
|
|
|
SLIST_REMOVE(&sc->rl, rle, pccbb_reslist, link);
|
2000-10-18 03:25:13 +00:00
|
|
|
free(rle, M_DEVBUF);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-11-26 05:42:45 +00:00
|
|
|
return (BUS_RELEASE_RESOURCE(device_get_parent(brdev), child,
|
|
|
|
type, rid, res));
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************************/
|
|
|
|
/* PC Card methods */
|
|
|
|
/************************************************************************/
|
|
|
|
|
|
|
|
static int
|
2001-08-26 23:55:34 +00:00
|
|
|
pccbb_pcic_set_res_flags(device_t brdev, device_t child, int type, int rid,
|
2002-01-14 02:59:06 +00:00
|
|
|
uint32_t flags)
|
2000-10-18 03:25:13 +00:00
|
|
|
{
|
2001-08-26 23:55:34 +00:00
|
|
|
struct pccbb_softc *sc = device_get_softc(brdev);
|
2001-08-27 00:09:42 +00:00
|
|
|
struct resource *res;
|
|
|
|
struct pccbb_reslist *rle;
|
|
|
|
int win;
|
2000-10-18 03:25:13 +00:00
|
|
|
|
2001-08-27 00:09:42 +00:00
|
|
|
res = NULL;
|
2000-10-18 03:25:13 +00:00
|
|
|
if (type != SYS_RES_MEMORY)
|
|
|
|
return (EINVAL);
|
2001-08-27 00:09:42 +00:00
|
|
|
SLIST_FOREACH(rle, &sc->rl, link) {
|
|
|
|
if (SYS_RES_MEMORY == rle->type && rid == rle->rid &&
|
|
|
|
child == rle->res->r_dev) {
|
|
|
|
res = rle->res;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (res == NULL) {
|
|
|
|
device_printf(brdev,
|
|
|
|
"set_res_flags: specified rid not found\n");
|
2001-11-26 05:42:45 +00:00
|
|
|
return (ENOENT);
|
2001-08-27 00:09:42 +00:00
|
|
|
}
|
|
|
|
win = pccbb_pcic_mem_findmap(sc, res);
|
|
|
|
if (win < 0) {
|
|
|
|
device_printf(brdev,
|
|
|
|
"set_res_flags: specified resource not active\n");
|
2001-11-26 05:42:45 +00:00
|
|
|
return (ENOENT);
|
2001-08-27 00:09:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sc->mem[win].kind = flags;
|
|
|
|
pccbb_pcic_do_mem_map(sc, win);
|
2001-11-26 05:42:45 +00:00
|
|
|
return (0);
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2001-08-26 23:55:34 +00:00
|
|
|
pccbb_pcic_set_memory_offset(device_t brdev, device_t child, int rid,
|
2002-01-14 02:59:06 +00:00
|
|
|
uint32_t cardaddr, uint32_t *deltap)
|
2000-10-18 03:25:13 +00:00
|
|
|
{
|
2001-08-26 23:55:34 +00:00
|
|
|
struct pccbb_softc *sc = device_get_softc(brdev);
|
2000-10-18 03:25:13 +00:00
|
|
|
int win;
|
|
|
|
struct pccbb_reslist *rle;
|
2001-08-27 00:09:42 +00:00
|
|
|
struct resource *res;
|
2002-01-14 02:59:06 +00:00
|
|
|
uint32_t delta;
|
2000-10-18 03:25:13 +00:00
|
|
|
|
|
|
|
win = -1;
|
2001-01-06 18:04:55 +00:00
|
|
|
|
2001-08-27 00:09:42 +00:00
|
|
|
res = NULL;
|
|
|
|
SLIST_FOREACH(rle, &sc->rl, link) {
|
2000-10-18 03:25:13 +00:00
|
|
|
if (SYS_RES_MEMORY == rle->type && rid == rle->rid &&
|
2001-08-27 00:09:42 +00:00
|
|
|
child == rle->res->r_dev) {
|
|
|
|
res = rle->res;
|
|
|
|
rle->cardaddr = cardaddr;
|
2000-10-18 03:25:13 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2001-08-27 00:09:42 +00:00
|
|
|
|
|
|
|
if (res == NULL) {
|
|
|
|
device_printf(brdev,
|
|
|
|
"set_memory_offset: specified rid not found\n");
|
2001-11-26 05:42:45 +00:00
|
|
|
return (ENOENT);
|
2001-08-27 00:09:42 +00:00
|
|
|
}
|
|
|
|
win = pccbb_pcic_mem_findmap(sc, res);
|
|
|
|
if (win < 0) {
|
|
|
|
device_printf(brdev,
|
|
|
|
"set_memory_offset: specified resource not active\n");
|
2001-11-26 05:42:45 +00:00
|
|
|
return (ENOENT);
|
2001-01-06 18:04:55 +00:00
|
|
|
}
|
2000-10-18 03:25:13 +00:00
|
|
|
|
2001-01-07 16:31:09 +00:00
|
|
|
delta = cardaddr % PCIC_MEM_PAGESIZE;
|
|
|
|
if (deltap)
|
|
|
|
*deltap = delta;
|
|
|
|
cardaddr -= delta;
|
2001-08-26 23:55:34 +00:00
|
|
|
sc->mem[win].realsize = sc->mem[win].size + delta +
|
2001-01-07 16:31:09 +00:00
|
|
|
PCIC_MEM_PAGESIZE - 1;
|
|
|
|
sc->mem[win].realsize = sc->mem[win].realsize -
|
|
|
|
(sc->mem[win].realsize % PCIC_MEM_PAGESIZE);
|
2001-01-06 18:04:55 +00:00
|
|
|
sc->mem[win].offset = cardaddr - sc->mem[win].addr;
|
2000-10-18 03:25:13 +00:00
|
|
|
pccbb_pcic_do_mem_map(sc, win);
|
|
|
|
|
2001-11-26 05:42:45 +00:00
|
|
|
return (0);
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
|
|
|
|
2000-11-28 00:05:20 +00:00
|
|
|
/************************************************************************/
|
|
|
|
/* POWER methods */
|
|
|
|
/************************************************************************/
|
|
|
|
|
2000-10-18 03:25:13 +00:00
|
|
|
static int
|
2001-08-26 23:55:34 +00:00
|
|
|
pccbb_power_enable_socket(device_t brdev, device_t child)
|
2000-10-18 03:25:13 +00:00
|
|
|
{
|
2001-08-26 23:55:34 +00:00
|
|
|
struct pccbb_softc *sc = device_get_softc(brdev);
|
2000-10-18 03:25:13 +00:00
|
|
|
|
2000-11-28 00:05:20 +00:00
|
|
|
if (sc->sc_flags & PCCBB_16BIT_CARD)
|
2001-11-26 05:42:45 +00:00
|
|
|
return (pccbb_pcic_power_enable_socket(brdev, child));
|
2000-11-28 00:05:20 +00:00
|
|
|
else
|
2001-11-26 05:42:45 +00:00
|
|
|
return (pccbb_cardbus_power_enable_socket(brdev, child));
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2001-08-26 23:55:34 +00:00
|
|
|
pccbb_power_disable_socket(device_t brdev, device_t child)
|
2000-10-18 03:25:13 +00:00
|
|
|
{
|
2001-08-26 23:55:34 +00:00
|
|
|
struct pccbb_softc *sc = device_get_softc(brdev);
|
2000-11-28 00:05:20 +00:00
|
|
|
if (sc->sc_flags & PCCBB_16BIT_CARD)
|
2001-08-26 23:55:34 +00:00
|
|
|
pccbb_pcic_power_disable_socket(brdev, child);
|
2000-11-28 00:05:20 +00:00
|
|
|
else
|
2001-08-26 23:55:34 +00:00
|
|
|
pccbb_cardbus_power_disable_socket(brdev, child);
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
|
|
|
/************************************************************************/
|
2000-11-28 00:05:20 +00:00
|
|
|
/* BUS Methods */
|
2000-10-18 03:25:13 +00:00
|
|
|
/************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
2001-08-26 23:55:34 +00:00
|
|
|
pccbb_activate_resource(device_t brdev, device_t child, int type, int rid,
|
|
|
|
struct resource *r)
|
2000-10-18 03:25:13 +00:00
|
|
|
{
|
2001-08-26 23:55:34 +00:00
|
|
|
struct pccbb_softc *sc = device_get_softc(brdev);
|
2000-10-18 03:25:13 +00:00
|
|
|
|
|
|
|
if (sc->sc_flags & PCCBB_16BIT_CARD)
|
2001-11-26 05:42:45 +00:00
|
|
|
return (pccbb_pcic_activate_resource(brdev, child, type, rid, r));
|
2000-10-18 03:25:13 +00:00
|
|
|
else
|
2001-11-26 05:42:45 +00:00
|
|
|
return (pccbb_cardbus_activate_resource(brdev, child, type, rid,
|
|
|
|
r));
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2001-08-26 23:55:34 +00:00
|
|
|
pccbb_deactivate_resource(device_t brdev, device_t child, int type,
|
|
|
|
int rid, struct resource *r)
|
2000-10-18 03:25:13 +00:00
|
|
|
{
|
2001-08-26 23:55:34 +00:00
|
|
|
struct pccbb_softc *sc = device_get_softc(brdev);
|
2000-10-18 03:25:13 +00:00
|
|
|
|
|
|
|
if (sc->sc_flags & PCCBB_16BIT_CARD)
|
2001-11-26 05:42:45 +00:00
|
|
|
return (pccbb_pcic_deactivate_resource(brdev, child, type,
|
|
|
|
rid, r));
|
2000-10-18 03:25:13 +00:00
|
|
|
else
|
2001-11-26 05:42:45 +00:00
|
|
|
return (pccbb_cardbus_deactivate_resource(brdev, child, type,
|
|
|
|
rid, r));
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
|
|
|
|
2001-08-26 23:55:34 +00:00
|
|
|
static struct resource *
|
|
|
|
pccbb_alloc_resource(device_t brdev, device_t child, int type, int *rid,
|
2002-01-14 02:59:06 +00:00
|
|
|
u_long start, u_long end, u_long count, uint flags)
|
2000-10-18 03:25:13 +00:00
|
|
|
{
|
2001-08-26 23:55:34 +00:00
|
|
|
struct pccbb_softc *sc = device_get_softc(brdev);
|
2000-10-18 03:25:13 +00:00
|
|
|
|
|
|
|
if (sc->sc_flags & PCCBB_16BIT_CARD)
|
2001-11-26 05:42:45 +00:00
|
|
|
return (pccbb_pcic_alloc_resource(brdev, child, type, rid,
|
|
|
|
start, end, count, flags));
|
2000-10-18 03:25:13 +00:00
|
|
|
else
|
2001-11-26 05:42:45 +00:00
|
|
|
return (pccbb_cardbus_alloc_resource(brdev, child, type, rid,
|
|
|
|
start, end, count, flags));
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2001-08-26 23:55:34 +00:00
|
|
|
pccbb_release_resource(device_t brdev, device_t child, int type, int rid,
|
|
|
|
struct resource *r)
|
2000-10-18 03:25:13 +00:00
|
|
|
{
|
2001-08-26 23:55:34 +00:00
|
|
|
struct pccbb_softc *sc = device_get_softc(brdev);
|
2000-10-18 03:25:13 +00:00
|
|
|
|
|
|
|
if (sc->sc_flags & PCCBB_16BIT_CARD)
|
2001-11-26 05:42:45 +00:00
|
|
|
return (pccbb_pcic_release_resource(brdev, child, type,
|
|
|
|
rid, r));
|
2000-10-18 03:25:13 +00:00
|
|
|
else
|
2001-11-26 05:42:45 +00:00
|
|
|
return (pccbb_cardbus_release_resource(brdev, child, type,
|
|
|
|
rid, r));
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
|
|
|
|
2000-12-13 01:28:00 +00:00
|
|
|
static int
|
2001-08-26 23:55:34 +00:00
|
|
|
pccbb_read_ivar(device_t brdev, device_t child, int which, uintptr_t *result)
|
2000-12-13 01:28:00 +00:00
|
|
|
{
|
2001-08-26 23:55:34 +00:00
|
|
|
struct pccbb_softc *sc = device_get_softc(brdev);
|
2001-01-06 18:04:55 +00:00
|
|
|
|
2000-12-13 01:28:00 +00:00
|
|
|
switch (which) {
|
|
|
|
case PCIB_IVAR_BUS:
|
|
|
|
*result = sc->sc_secbus;
|
2001-11-26 05:42:45 +00:00
|
|
|
return (0);
|
2000-12-13 01:28:00 +00:00
|
|
|
}
|
2001-11-26 05:42:45 +00:00
|
|
|
return (ENOENT);
|
2000-12-13 01:28:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2001-08-26 23:55:34 +00:00
|
|
|
pccbb_write_ivar(device_t brdev, device_t child, int which, uintptr_t value)
|
2000-12-13 01:28:00 +00:00
|
|
|
{
|
2001-08-26 23:55:34 +00:00
|
|
|
struct pccbb_softc *sc = device_get_softc(brdev);
|
2000-12-13 01:28:00 +00:00
|
|
|
|
|
|
|
switch (which) {
|
|
|
|
case PCIB_IVAR_BUS:
|
|
|
|
sc->sc_secbus = value;
|
|
|
|
break;
|
|
|
|
}
|
2001-11-26 05:42:45 +00:00
|
|
|
return (ENOENT);
|
2000-12-13 01:28:00 +00:00
|
|
|
}
|
|
|
|
|
2000-11-28 00:05:20 +00:00
|
|
|
/************************************************************************/
|
|
|
|
/* PCI compat methods */
|
|
|
|
/************************************************************************/
|
|
|
|
|
2000-10-18 03:25:13 +00:00
|
|
|
static int
|
2001-08-26 23:55:34 +00:00
|
|
|
pccbb_maxslots(device_t brdev)
|
2000-10-18 03:25:13 +00:00
|
|
|
{
|
2001-11-26 05:42:45 +00:00
|
|
|
return (0);
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
|
|
|
|
2002-01-14 02:59:06 +00:00
|
|
|
static uint32_t
|
2001-08-26 23:55:34 +00:00
|
|
|
pccbb_read_config(device_t brdev, int b, int s, int f, int reg, int width)
|
2000-10-18 03:25:13 +00:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Pass through to the next ppb up the chain (i.e. our grandparent).
|
|
|
|
*/
|
2001-11-26 05:42:45 +00:00
|
|
|
return (PCIB_READ_CONFIG(device_get_parent(device_get_parent(brdev)),
|
|
|
|
b, s, f, reg, width));
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2002-01-14 02:59:06 +00:00
|
|
|
pccbb_write_config(device_t brdev, int b, int s, int f, int reg, uint32_t val,
|
2001-08-26 23:55:34 +00:00
|
|
|
int width)
|
2000-10-18 03:25:13 +00:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Pass through to the next ppb up the chain (i.e. our grandparent).
|
|
|
|
*/
|
2001-08-26 23:55:34 +00:00
|
|
|
PCIB_WRITE_CONFIG(device_get_parent(device_get_parent(brdev)),
|
|
|
|
b, s, f, reg, val, width);
|
2000-10-18 03:25:13 +00:00
|
|
|
}
|
|
|
|
|
2001-12-15 05:58:28 +00:00
|
|
|
static int
|
|
|
|
pccbb_suspend(device_t self)
|
|
|
|
{
|
|
|
|
int error = 0;
|
|
|
|
struct pccbb_softc* sc = device_get_softc(self);
|
|
|
|
|
|
|
|
bus_teardown_intr(self, sc->sc_irq_res, sc->sc_intrhand);
|
|
|
|
error = bus_generic_suspend(self);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
pccbb_resume(device_t self)
|
|
|
|
{
|
|
|
|
int error = 0;
|
|
|
|
struct pccbb_softc *sc = (struct pccbb_softc *)device_get_softc(self);
|
2002-01-14 02:59:06 +00:00
|
|
|
uint32_t tmp;
|
2001-12-15 05:58:28 +00:00
|
|
|
|
|
|
|
pci_write_config(self, PCCBBR_SOCKBASE,
|
|
|
|
rman_get_start(sc->sc_base_res), 4);
|
|
|
|
DEVPRINTF((self, "PCI Memory allocated: %08lx\n",
|
|
|
|
rman_get_start(sc->sc_base_res)));
|
|
|
|
|
|
|
|
pccbb_chipinit(sc);
|
|
|
|
|
|
|
|
/* CSC Interrupt: Card detect interrupt on */
|
2002-01-14 02:59:06 +00:00
|
|
|
pccbb_setb(sc, PCCBB_SOCKET_MASK, PCCBB_SOCKET_MASK_CD);
|
2001-12-15 05:58:28 +00:00
|
|
|
|
|
|
|
/* reset interrupt */
|
2002-01-14 02:59:06 +00:00
|
|
|
tmp = pccbb_get(sc, PCCBB_SOCKET_EVENT);
|
|
|
|
pccbb_set(sc, PCCBB_SOCKET_EVENT, tmp);
|
2001-12-15 05:58:28 +00:00
|
|
|
|
|
|
|
/* re-establish the interrupt. */
|
|
|
|
if (bus_setup_intr(self, sc->sc_irq_res, INTR_TYPE_BIO, pccbb_intr, sc,
|
|
|
|
&(sc->sc_intrhand))) {
|
|
|
|
device_printf(self, "couldn't re-establish interrupt");
|
|
|
|
bus_release_resource(self, SYS_RES_IRQ, 0, sc->sc_irq_res);
|
|
|
|
bus_release_resource(self, SYS_RES_MEMORY, PCCBBR_SOCKBASE,
|
|
|
|
sc->sc_base_res);
|
|
|
|
mtx_destroy(&sc->sc_mtx);
|
|
|
|
error = ENOMEM;
|
|
|
|
}
|
|
|
|
bus_generic_resume(self);
|
|
|
|
|
|
|
|
/* wakeup thread */
|
|
|
|
if (!error) {
|
|
|
|
mtx_lock(&sc->sc_mtx);
|
|
|
|
wakeup(sc);
|
|
|
|
mtx_unlock(&sc->sc_mtx);
|
|
|
|
}
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
2000-10-18 03:25:13 +00:00
|
|
|
static device_method_t pccbb_methods[] = {
|
|
|
|
/* Device interface */
|
|
|
|
DEVMETHOD(device_probe, pccbb_probe),
|
|
|
|
DEVMETHOD(device_attach, pccbb_attach),
|
2000-11-28 00:05:20 +00:00
|
|
|
DEVMETHOD(device_detach, pccbb_detach),
|
2001-08-27 00:09:42 +00:00
|
|
|
DEVMETHOD(device_shutdown, pccbb_shutdown),
|
2001-12-15 05:58:28 +00:00
|
|
|
DEVMETHOD(device_suspend, pccbb_suspend),
|
|
|
|
DEVMETHOD(device_resume, pccbb_resume),
|
2000-10-18 03:25:13 +00:00
|
|
|
|
|
|
|
/* bus methods */
|
|
|
|
DEVMETHOD(bus_print_child, bus_generic_print_child),
|
2000-12-13 01:28:00 +00:00
|
|
|
DEVMETHOD(bus_read_ivar, pccbb_read_ivar),
|
|
|
|
DEVMETHOD(bus_write_ivar, pccbb_write_ivar),
|
2000-10-18 03:25:13 +00:00
|
|
|
DEVMETHOD(bus_alloc_resource, pccbb_alloc_resource),
|
|
|
|
DEVMETHOD(bus_release_resource, pccbb_release_resource),
|
|
|
|
DEVMETHOD(bus_activate_resource, pccbb_activate_resource),
|
|
|
|
DEVMETHOD(bus_deactivate_resource, pccbb_deactivate_resource),
|
2000-11-28 00:05:20 +00:00
|
|
|
DEVMETHOD(bus_driver_added, pccbb_driver_added),
|
|
|
|
DEVMETHOD(bus_child_detached, pccbb_child_detached),
|
2000-10-18 03:25:13 +00:00
|
|
|
DEVMETHOD(bus_setup_intr, bus_generic_setup_intr),
|
|
|
|
DEVMETHOD(bus_teardown_intr, bus_generic_teardown_intr),
|
|
|
|
|
2001-08-27 00:09:42 +00:00
|
|
|
/* 16-bit card interface */
|
2000-10-18 03:25:13 +00:00
|
|
|
DEVMETHOD(card_set_res_flags, pccbb_pcic_set_res_flags),
|
|
|
|
DEVMETHOD(card_set_memory_offset, pccbb_pcic_set_memory_offset),
|
2001-08-27 00:09:42 +00:00
|
|
|
DEVMETHOD(card_reprobe_card, pccbb_card_reprobe),
|
2000-10-18 03:25:13 +00:00
|
|
|
|
2001-08-27 00:09:42 +00:00
|
|
|
/* power interface */
|
2000-11-28 00:05:20 +00:00
|
|
|
DEVMETHOD(power_enable_socket, pccbb_power_enable_socket),
|
|
|
|
DEVMETHOD(power_disable_socket, pccbb_power_disable_socket),
|
2000-10-18 03:25:13 +00:00
|
|
|
|
2001-08-27 00:09:42 +00:00
|
|
|
/* pcib compatibility interface */
|
2000-11-28 00:05:20 +00:00
|
|
|
DEVMETHOD(pcib_maxslots, pccbb_maxslots),
|
|
|
|
DEVMETHOD(pcib_read_config, pccbb_read_config),
|
|
|
|
DEVMETHOD(pcib_write_config, pccbb_write_config),
|
2000-10-18 03:25:13 +00:00
|
|
|
{0,0}
|
|
|
|
};
|
|
|
|
|
|
|
|
static driver_t pccbb_driver = {
|
|
|
|
"pccbb",
|
|
|
|
pccbb_methods,
|
|
|
|
sizeof(struct pccbb_softc)
|
|
|
|
};
|
|
|
|
|
2000-11-28 00:05:20 +00:00
|
|
|
static devclass_t pccbb_devclass;
|
|
|
|
|
|
|
|
DRIVER_MODULE(pccbb, pci, pccbb_driver, pccbb_devclass, 0, 0);
|
2000-10-18 03:25:13 +00:00
|
|
|
|
|
|
|
SYSINIT(pccbb, SI_SUB_KTHREAD_IDLE, SI_ORDER_ANY, pccbb_start_threads, 0);
|