Home | History | Annotate | Line # | Download | only in dev
gayle_pcmcia.c revision 1.9.2.3
      1  1.9.2.3  jdolecek /*	$NetBSD: gayle_pcmcia.c,v 1.9.2.3 2002/10/10 18:31:24 jdolecek Exp $ */
      2      1.6   aymeric 
      3      1.6   aymeric /* public domain */
      4      1.1   aymeric 
      5  1.9.2.2  jdolecek #include <sys/cdefs.h>
      6  1.9.2.3  jdolecek __KERNEL_RCSID(0, "$NetBSD: gayle_pcmcia.c,v 1.9.2.3 2002/10/10 18:31:24 jdolecek Exp $");
      7  1.9.2.2  jdolecek 
      8      1.1   aymeric /* PCMCIA front-end driver for A1200's and A600's. */
      9      1.1   aymeric 
     10      1.1   aymeric #include <sys/param.h>
     11      1.1   aymeric #include <sys/device.h>
     12      1.1   aymeric #include <sys/kernel.h>
     13      1.1   aymeric #include <sys/kthread.h>
     14      1.1   aymeric #include <sys/systm.h>
     15      1.3       mrg 
     16      1.1   aymeric #include <uvm/uvm.h>
     17      1.3       mrg 
     18      1.1   aymeric #include <dev/pcmcia/pcmciareg.h>
     19      1.1   aymeric #include <dev/pcmcia/pcmciavar.h>
     20      1.1   aymeric 
     21      1.1   aymeric #include <machine/cpu.h>
     22      1.1   aymeric #include <amiga/amiga/custom.h>
     23      1.1   aymeric #include <amiga/amiga/device.h>
     24      1.1   aymeric #include <amiga/amiga/gayle.h>
     25      1.1   aymeric #include <amiga/amiga/isr.h>
     26      1.1   aymeric 
     27      1.1   aymeric 
     28  1.9.2.2  jdolecek /* There is one of these for each slot. And yes, there is only one slot. */
     29      1.1   aymeric struct pccard_slot {
     30      1.1   aymeric 	struct	pccard_softc *sc;	/* refer to `parent' */
     31      1.1   aymeric 	int	(*intr_func)(void *);
     32      1.1   aymeric 	void *	intr_arg;
     33      1.1   aymeric 	struct	device *card;
     34      1.1   aymeric 	int	flags;
     35      1.1   aymeric #define SLOT_OCCUPIED		0x01
     36      1.1   aymeric #define SLOT_NEW_CARD_EVENT	0x02
     37      1.1   aymeric };
     38      1.1   aymeric 
     39      1.1   aymeric struct pccard_softc {
     40      1.1   aymeric 	struct device sc_dev;
     41      1.1   aymeric 	struct bus_space_tag io_space;
     42      1.1   aymeric 	struct bus_space_tag attr_space;
     43      1.1   aymeric 	struct bus_space_tag mem_space;
     44      1.1   aymeric 	struct pccard_slot devs[1];
     45      1.1   aymeric 	struct isr intr6;
     46      1.1   aymeric 	struct isr intr2;
     47      1.1   aymeric };
     48      1.1   aymeric 
     49  1.9.2.2  jdolecek static int	pccard_probe(struct device *, struct cfdata *, void *);
     50  1.9.2.2  jdolecek static void	pccard_attach(struct device *, struct device *, void *);
     51  1.9.2.2  jdolecek static void	pccard_attach_slot(struct pccard_slot *);
     52  1.9.2.2  jdolecek static int	pccard_intr6(void *);
     53  1.9.2.2  jdolecek static int	pccard_intr2(void *);
     54  1.9.2.2  jdolecek static void	pccard_create_kthread(void *);
     55  1.9.2.2  jdolecek static void	pccard_kthread(void *);
     56  1.9.2.2  jdolecek 
     57  1.9.2.2  jdolecek static int pcf_mem_alloc(pcmcia_chipset_handle_t, bus_size_t,
     58  1.9.2.2  jdolecek 		struct pcmcia_mem_handle *);
     59  1.9.2.2  jdolecek static void pcf_mem_free(pcmcia_chipset_handle_t, struct pcmcia_mem_handle *);
     60  1.9.2.2  jdolecek static int pcf_mem_map(pcmcia_chipset_handle_t, int, bus_addr_t, bus_size_t,
     61  1.9.2.2  jdolecek 		struct pcmcia_mem_handle *, bus_addr_t *, int *);
     62  1.9.2.2  jdolecek static void pcf_mem_unmap(pcmcia_chipset_handle_t, int);
     63  1.9.2.2  jdolecek static int pcf_io_alloc(pcmcia_chipset_handle_t, bus_addr_t, bus_size_t,
     64  1.9.2.2  jdolecek 		bus_size_t, struct pcmcia_io_handle *);
     65  1.9.2.2  jdolecek static void pcf_io_free(pcmcia_chipset_handle_t, struct pcmcia_io_handle *);
     66  1.9.2.2  jdolecek static int pcf_io_map(pcmcia_chipset_handle_t, int, bus_addr_t, bus_size_t,
     67  1.9.2.2  jdolecek 		struct pcmcia_io_handle *, int *);
     68  1.9.2.2  jdolecek static void pcf_io_unmap(pcmcia_chipset_handle_t, int);
     69  1.9.2.2  jdolecek static void *pcf_intr_establish(pcmcia_chipset_handle_t,
     70  1.9.2.2  jdolecek 		struct pcmcia_function *, int, int (*)(void *), void *);
     71  1.9.2.2  jdolecek static void pcf_intr_disestablish(pcmcia_chipset_handle_t, void *);
     72  1.9.2.2  jdolecek static void pcf_socket_enable(pcmcia_chipset_handle_t);
     73  1.9.2.2  jdolecek static void pcf_socket_disable(pcmcia_chipset_handle_t);
     74      1.1   aymeric 
     75      1.1   aymeric static bsr(pcmio_bsr1, u_int8_t);
     76      1.1   aymeric static bsw(pcmio_bsw1, u_int8_t);
     77      1.1   aymeric static bsrm(pcmio_bsrm1, u_int8_t);
     78      1.1   aymeric static bswm(pcmio_bswm1, u_int8_t);
     79      1.1   aymeric static bsrm(pcmio_bsrr1, u_int8_t);
     80      1.1   aymeric static bswm(pcmio_bswr1, u_int8_t);
     81      1.1   aymeric static bssr(pcmio_bssr1, u_int8_t);
     82      1.1   aymeric static bscr(pcmio_bscr1, u_int8_t);
     83      1.1   aymeric 
     84  1.9.2.3  jdolecek CFATTACH_DECL(pccard, sizeof(struct pccard_softc),
     85  1.9.2.3  jdolecek     pccard_probe, pccard_attach, NULL, NULL);
     86      1.1   aymeric 
     87      1.1   aymeric struct pcmcia_chip_functions chip_functions = {
     88      1.1   aymeric 	pcf_mem_alloc,		pcf_mem_free,
     89      1.1   aymeric 	pcf_mem_map,		pcf_mem_unmap,
     90      1.1   aymeric 	pcf_io_alloc,		pcf_io_free,
     91      1.1   aymeric 	pcf_io_map,		pcf_io_unmap,
     92      1.1   aymeric 	pcf_intr_establish,	pcf_intr_disestablish,
     93      1.1   aymeric 	pcf_socket_enable,	pcf_socket_disable
     94      1.1   aymeric };
     95      1.1   aymeric 
     96      1.1   aymeric struct amiga_bus_space_methods pcmio_bs_methods;
     97      1.1   aymeric 
     98  1.9.2.2  jdolecek static u_int8_t *reset_card_reg;
     99  1.9.2.2  jdolecek 
    100      1.1   aymeric static int
    101  1.9.2.2  jdolecek pccard_probe(struct device *dev, struct cfdata *cfd, void *aux)
    102      1.1   aymeric {
    103  1.9.2.2  jdolecek 
    104      1.1   aymeric 	return (/*is_a600() || */is_a1200()) && matchname(aux, "pccard");
    105      1.1   aymeric }
    106      1.1   aymeric 
    107      1.1   aymeric static void
    108  1.9.2.2  jdolecek pccard_attach(struct device *parent, struct device *myself, void *aux)
    109      1.1   aymeric {
    110      1.1   aymeric 	struct pccard_softc *self = (struct pccard_softc *) myself;
    111      1.1   aymeric 	struct pcmciabus_attach_args paa;
    112      1.1   aymeric 	vaddr_t pcmcia_base = GAYLE_PCMCIA_START;
    113      1.1   aymeric 	vaddr_t i;
    114      1.1   aymeric 	int ret;
    115      1.1   aymeric 
    116      1.1   aymeric 	printf("\n");
    117      1.1   aymeric 
    118      1.1   aymeric 	gayle_init();
    119      1.1   aymeric 
    120      1.1   aymeric 	ret = uvm_map(kernel_map, &pcmcia_base,
    121      1.1   aymeric 		GAYLE_PCMCIA_END - GAYLE_PCMCIA_START, NULL,
    122      1.5   thorpej 		UVM_UNKNOWN_OFFSET, 0,
    123      1.5   thorpej 		UVM_MAPFLAG(UVM_PROT_NONE, UVM_PROT_NONE,
    124      1.5   thorpej 		UVM_INH_NONE, UVM_ADV_RANDOM, 0));
    125      1.8       chs 	if (ret != 0) {
    126      1.1   aymeric 		printf("attach failed (no virtual memory)\n");
    127      1.1   aymeric 		return;
    128      1.1   aymeric 	}
    129      1.1   aymeric 
    130      1.1   aymeric 	for (i = GAYLE_PCMCIA_START; i < GAYLE_PCMCIA_END; i += PAGE_SIZE)
    131      1.1   aymeric 		pmap_enter(kernel_map->pmap,
    132      1.1   aymeric 		    i - GAYLE_PCMCIA_START + pcmcia_base, i,
    133      1.1   aymeric 		    VM_PROT_READ | VM_PROT_WRITE, TRUE);
    134  1.9.2.1   thorpej 	pmap_update(kernel_map->pmap);
    135      1.1   aymeric 
    136      1.1   aymeric 	/* override the one-byte access methods for I/O space */
    137      1.1   aymeric 	pcmio_bs_methods = amiga_bus_stride_1;
    138      1.1   aymeric 	pcmio_bs_methods.bsr1 = pcmio_bsr1;
    139      1.1   aymeric 	pcmio_bs_methods.bsw1 = pcmio_bsw1;
    140      1.1   aymeric 	pcmio_bs_methods.bsrm1 = pcmio_bsrm1;
    141      1.1   aymeric 	pcmio_bs_methods.bswm1 = pcmio_bswm1;
    142      1.1   aymeric 	pcmio_bs_methods.bsrr1 = pcmio_bsrr1;
    143      1.1   aymeric 	pcmio_bs_methods.bswr1 = pcmio_bswr1;
    144      1.1   aymeric 	pcmio_bs_methods.bssr1 = pcmio_bssr1;
    145      1.1   aymeric 	pcmio_bs_methods.bscr1 = pcmio_bscr1;
    146      1.1   aymeric 
    147      1.1   aymeric 	reset_card_reg = (u_int8_t *) pcmcia_base - GAYLE_PCMCIA_START +
    148      1.1   aymeric 	    GAYLE_PCMCIA_RESET;
    149      1.1   aymeric 
    150      1.1   aymeric 	self->io_space.base = (u_int) pcmcia_base - GAYLE_PCMCIA_START +
    151      1.1   aymeric 	    GAYLE_PCMCIA_IO_START;
    152      1.1   aymeric 	self->io_space.absm = &pcmio_bs_methods;
    153      1.1   aymeric 
    154      1.1   aymeric 	self->attr_space.base = (u_int) pcmcia_base - GAYLE_PCMCIA_START +
    155      1.1   aymeric 	    GAYLE_PCMCIA_ATTR_START;
    156      1.1   aymeric 	self->attr_space.absm = &amiga_bus_stride_1;
    157      1.1   aymeric 
    158      1.6   aymeric 	/* XXX we should check if the 4M of common memory are actually
    159      1.6   aymeric 	 *	RAM or PCMCIA usable.
    160      1.6   aymeric 	 * For now, we just do as if the 4M were RAM and make common memory
    161      1.6   aymeric 	 * point to attribute memory, which is OK for some I/O cards.
    162      1.6   aymeric 	 */
    163      1.1   aymeric 	self->mem_space.base = (u_int) pcmcia_base;
    164      1.1   aymeric 	self->mem_space.absm = &amiga_bus_stride_1;
    165      1.1   aymeric 
    166      1.1   aymeric 	self->devs[0].sc = self;
    167      1.1   aymeric 	self->devs[0].intr_func = NULL;
    168      1.1   aymeric 	self->devs[0].intr_arg = NULL;
    169      1.1   aymeric 	self->devs[0].flags = 0;
    170      1.1   aymeric 
    171      1.1   aymeric 	gayle.pcc_status = 0;
    172      1.1   aymeric 	gayle.intreq = 0;
    173      1.1   aymeric 	gayle.pcc_config = 0;
    174      1.1   aymeric 	gayle.intena &= GAYLE_INT_IDE;
    175      1.1   aymeric 
    176      1.1   aymeric 	paa.paa_busname = "pcmcia";
    177      1.1   aymeric 	paa.pct = &chip_functions;
    178      1.1   aymeric 	paa.pch = &self->devs[0];
    179      1.1   aymeric 	paa.iobase = 0;
    180      1.1   aymeric 	paa.iosize = 0;
    181      1.1   aymeric 	self->devs[0].card =
    182      1.1   aymeric 		config_found_sm(myself, &paa, simple_devprint, NULL);
    183      1.1   aymeric 	if (self->devs[0].card == NULL) {
    184      1.1   aymeric 		printf("attach failed, config_found_sm() returned NULL\n");
    185      1.1   aymeric 		return;
    186      1.1   aymeric 	}
    187      1.1   aymeric 
    188      1.1   aymeric 	self->intr6.isr_intr = pccard_intr6;
    189      1.1   aymeric 	self->intr6.isr_arg = self;
    190      1.1   aymeric 	self->intr6.isr_ipl = 6;
    191      1.1   aymeric 	add_isr(&self->intr6);
    192      1.1   aymeric 
    193      1.1   aymeric 	self->intr2.isr_intr = pccard_intr2;
    194      1.1   aymeric 	self->intr2.isr_arg = self;
    195      1.1   aymeric 	self->intr2.isr_ipl = 2;
    196      1.1   aymeric 	add_isr(&self->intr2);
    197      1.1   aymeric 
    198      1.1   aymeric 	kthread_create(pccard_create_kthread, self);
    199      1.1   aymeric 
    200      1.1   aymeric 	gayle.intena |= GAYLE_INT_DETECT | GAYLE_INT_IREQ;
    201      1.1   aymeric 
    202      1.1   aymeric 	/* reset the card if it's already there */
    203      1.1   aymeric 	if (gayle.pcc_status & GAYLE_CCMEM_DETECT) {
    204      1.1   aymeric 		volatile u_int8_t x;
    205      1.1   aymeric 		*reset_card_reg = 0x0;
    206      1.1   aymeric 		delay(1000);
    207      1.1   aymeric 		x = *reset_card_reg;
    208      1.1   aymeric 		gayle.pcc_status = GAYLE_CCMEM_WP | GAYLE_CCIO_SPKR;
    209      1.1   aymeric 	}
    210      1.1   aymeric 
    211      1.1   aymeric 	pccard_attach_slot(&self->devs[0]);
    212      1.1   aymeric }
    213      1.1   aymeric 
    214      1.1   aymeric /* This is called as soon as it is possible to create a kernel thread */
    215      1.1   aymeric static void
    216  1.9.2.2  jdolecek pccard_create_kthread(void *arg)
    217      1.1   aymeric {
    218      1.1   aymeric 	struct pccard_softc *self = arg;
    219      1.1   aymeric 
    220      1.1   aymeric 	if (kthread_create1(pccard_kthread, self, NULL, "pccard thread")) {
    221      1.1   aymeric 		printf("%s: can't create kernel thread\n",
    222      1.1   aymeric 			self->sc_dev.dv_xname);
    223      1.1   aymeric 		panic("pccard kthread_create() failed");
    224      1.1   aymeric 	}
    225      1.1   aymeric }
    226      1.1   aymeric 
    227      1.1   aymeric static int
    228  1.9.2.2  jdolecek pccard_intr6(void *arg)
    229      1.1   aymeric {
    230      1.1   aymeric 	struct pccard_softc *self = arg;
    231      1.1   aymeric 
    232      1.1   aymeric 	if (gayle.intreq & GAYLE_INT_DETECT) {
    233      1.2   aymeric 		gayle.intreq = GAYLE_INT_IDE | GAYLE_INT_STSCHG |
    234      1.2   aymeric 		    GAYLE_INT_SPKR | GAYLE_INT_WP | GAYLE_INT_IREQ;
    235      1.1   aymeric 		self->devs[0].flags |= SLOT_NEW_CARD_EVENT;
    236      1.1   aymeric 		return 1;
    237      1.1   aymeric 	}
    238      1.1   aymeric 	return 0;
    239      1.1   aymeric }
    240      1.1   aymeric 
    241      1.1   aymeric static int
    242  1.9.2.2  jdolecek pccard_intr2(void *arg)
    243      1.1   aymeric {
    244      1.1   aymeric 	struct pccard_softc *self = arg;
    245      1.1   aymeric 	struct pccard_slot *slot = &self->devs[0];
    246      1.1   aymeric 
    247      1.1   aymeric 	if (slot->flags & SLOT_NEW_CARD_EVENT) {
    248      1.1   aymeric 		slot->flags &= ~SLOT_NEW_CARD_EVENT;
    249      1.1   aymeric 
    250      1.1   aymeric 		/* reset the registers */
    251      1.1   aymeric 		gayle.intreq = GAYLE_INT_IDE | GAYLE_INT_DETECT;
    252      1.1   aymeric 		gayle.pcc_status = GAYLE_CCMEM_WP | GAYLE_CCIO_SPKR;
    253      1.1   aymeric 		gayle.pcc_config = 0;
    254      1.1   aymeric 		pccard_attach_slot(&self->devs[0]);
    255      1.1   aymeric 	} else {
    256      1.2   aymeric 		int intreq = gayle.intreq &
    257      1.2   aymeric 		    (GAYLE_INT_STSCHG | GAYLE_INT_WP | GAYLE_INT_IREQ);
    258      1.2   aymeric 		if (intreq) {
    259      1.2   aymeric 			gayle.intreq = (intreq ^ 0x2c) | 0xc0;
    260      1.1   aymeric 
    261      1.6   aymeric 			return slot->flags & SLOT_OCCUPIED &&
    262      1.6   aymeric 		   		slot->intr_func != NULL &&
    263      1.1   aymeric 				slot->intr_func(slot->intr_arg);
    264      1.1   aymeric 		}
    265      1.1   aymeric 	}
    266      1.1   aymeric 	return 0;
    267      1.1   aymeric }
    268      1.1   aymeric 
    269      1.1   aymeric static void
    270  1.9.2.2  jdolecek pccard_kthread(void *arg)
    271      1.1   aymeric {
    272      1.1   aymeric 	struct pccard_softc *self = arg;
    273      1.1   aymeric 	struct pccard_slot *slot = &self->devs[0];
    274      1.1   aymeric 
    275      1.1   aymeric 	for (;;) {
    276      1.1   aymeric 		int s = spl2();
    277      1.1   aymeric 
    278      1.1   aymeric 		if (slot->flags & SLOT_NEW_CARD_EVENT) {
    279      1.1   aymeric 			slot->flags &= ~SLOT_NEW_CARD_EVENT;
    280      1.1   aymeric 			gayle.intreq = 0xc0;
    281      1.1   aymeric 
    282      1.1   aymeric 			/* reset the registers */
    283      1.1   aymeric 			gayle.intreq = GAYLE_INT_IDE | GAYLE_INT_DETECT;
    284      1.1   aymeric 			gayle.pcc_status = GAYLE_CCMEM_WP | GAYLE_CCIO_SPKR;
    285      1.1   aymeric 			gayle.pcc_config = 0;
    286      1.1   aymeric 			pccard_attach_slot(&self->devs[0]);
    287      1.1   aymeric 		}
    288      1.1   aymeric 		splx(s);
    289      1.1   aymeric 
    290      1.1   aymeric 		tsleep(slot, PWAIT, "pccthread", hz);
    291      1.1   aymeric 	}
    292      1.1   aymeric }
    293      1.1   aymeric 
    294      1.1   aymeric static void
    295  1.9.2.2  jdolecek pccard_attach_slot(struct pccard_slot *slot)
    296      1.1   aymeric {
    297  1.9.2.2  jdolecek 
    298      1.1   aymeric 	if (!(slot->flags & SLOT_OCCUPIED) &&
    299      1.1   aymeric 			gayle.pcc_status & GAYLE_CCMEM_DETECT) {
    300      1.1   aymeric 		if (pcmcia_card_attach(slot->card) == 0)
    301      1.1   aymeric 			slot->flags |= SLOT_OCCUPIED;
    302      1.1   aymeric 	}
    303      1.1   aymeric }
    304      1.1   aymeric 
    305      1.1   aymeric static int
    306  1.9.2.2  jdolecek pcf_mem_alloc(pcmcia_chipset_handle_t pch, bus_size_t bsz,
    307  1.9.2.2  jdolecek 	      struct pcmcia_mem_handle *pcmh)
    308      1.1   aymeric {
    309      1.1   aymeric 	struct pccard_slot *slot = (struct pccard_slot *) pch;
    310  1.9.2.2  jdolecek 
    311      1.1   aymeric 	pcmh->memt = &slot->sc->attr_space;
    312      1.1   aymeric 	pcmh->memh = pcmh->memt->base;
    313      1.1   aymeric 	return 0;
    314      1.1   aymeric }
    315      1.1   aymeric 
    316      1.1   aymeric static void
    317  1.9.2.2  jdolecek pcf_mem_free(pcmcia_chipset_handle_t pch, struct pcmcia_mem_handle *memh)
    318      1.1   aymeric {
    319      1.1   aymeric }
    320      1.1   aymeric 
    321      1.1   aymeric static int
    322  1.9.2.2  jdolecek pcf_mem_map(pcmcia_chipset_handle_t pch, int kind, bus_addr_t addr,
    323  1.9.2.2  jdolecek 	    bus_size_t size, struct pcmcia_mem_handle *pcmh,
    324  1.9.2.2  jdolecek 	    bus_addr_t *offsetp, int *windowp)
    325      1.1   aymeric {
    326      1.1   aymeric 	struct pccard_slot *slot = (struct pccard_slot *) pch;
    327      1.1   aymeric 
    328      1.6   aymeric 	/* Ignore width requirements */
    329      1.6   aymeric 	kind &= ~PCMCIA_WIDTH_MEM_MASK;
    330      1.6   aymeric 
    331      1.1   aymeric 	switch (kind) {
    332      1.1   aymeric 	case PCMCIA_MEM_ATTR:
    333      1.1   aymeric 		pcmh->memt = &slot->sc->attr_space;
    334      1.1   aymeric 		break;
    335      1.1   aymeric 	case PCMCIA_MEM_COMMON:
    336      1.1   aymeric 		pcmh->memt = &slot->sc->mem_space;
    337      1.1   aymeric 		break;
    338      1.1   aymeric 	default:
    339      1.1   aymeric 		/* This means that this code needs an update/a bugfix */
    340      1.7        is 		printf(__FILE__ ": unknown kind %d of PCMCIA memory\n", kind);
    341      1.1   aymeric 		return 1;
    342      1.1   aymeric 	}
    343      1.1   aymeric 
    344      1.1   aymeric 	bus_space_map(pcmh->memt, addr, size, 0, &pcmh->memh);
    345      1.1   aymeric 	*offsetp = 0;
    346      1.1   aymeric 	*windowp = 0;			/* unused */
    347      1.1   aymeric 
    348      1.1   aymeric 	return 0;
    349      1.1   aymeric }
    350      1.1   aymeric 
    351      1.1   aymeric static void
    352  1.9.2.2  jdolecek pcf_mem_unmap(pcmcia_chipset_handle_t pch, int win)
    353      1.1   aymeric {
    354      1.1   aymeric }
    355      1.1   aymeric 
    356      1.1   aymeric static int
    357  1.9.2.2  jdolecek pcf_io_alloc(pcmcia_chipset_handle_t pch, bus_addr_t start, bus_size_t size,
    358  1.9.2.2  jdolecek 	     bus_size_t align, struct pcmcia_io_handle *pcihp)
    359      1.1   aymeric {
    360      1.1   aymeric 	struct pccard_slot *slot = (struct pccard_slot *) pch;
    361      1.1   aymeric 
    362      1.1   aymeric 	pcihp->iot = &slot->sc->io_space;
    363      1.1   aymeric 	pcihp->ioh = pcihp->iot->base;
    364      1.1   aymeric 	return 0;
    365      1.1   aymeric }
    366      1.1   aymeric 
    367      1.1   aymeric static void
    368  1.9.2.2  jdolecek pcf_io_free(pcmcia_chipset_handle_t pch, struct pcmcia_io_handle *pcihp)
    369      1.1   aymeric {
    370      1.1   aymeric }
    371      1.1   aymeric 
    372      1.1   aymeric static int
    373  1.9.2.2  jdolecek pcf_io_map(pcmcia_chipset_handle_t pch, int width, bus_addr_t offset,
    374  1.9.2.2  jdolecek 	   bus_size_t size, struct pcmcia_io_handle *pcihp, int *windowp)
    375      1.1   aymeric {
    376      1.1   aymeric 	struct pccard_slot *slot = (struct pccard_slot *) pch;
    377      1.1   aymeric 
    378      1.1   aymeric 	pcihp->iot = &slot->sc->io_space;
    379      1.1   aymeric 	pcihp->ioh = offset;
    380      1.1   aymeric 
    381      1.1   aymeric 	*windowp = 0;		/* unused */
    382      1.1   aymeric 	return 0;
    383      1.1   aymeric }
    384      1.1   aymeric 
    385      1.1   aymeric static void
    386  1.9.2.2  jdolecek pcf_io_unmap(pcmcia_chipset_handle_t pch, int win)
    387      1.1   aymeric {
    388      1.1   aymeric }
    389      1.1   aymeric 
    390      1.1   aymeric static void *
    391  1.9.2.2  jdolecek pcf_intr_establish(pcmcia_chipset_handle_t pch, struct pcmcia_function *pf,
    392  1.9.2.2  jdolecek 		   int ipl, int (*func)(void *), void *arg)
    393      1.1   aymeric {
    394      1.1   aymeric 	struct pccard_slot *slot = (struct pccard_slot *) pch;
    395      1.1   aymeric 	int s;
    396      1.1   aymeric 
    397      1.1   aymeric 	s = splhigh();
    398      1.1   aymeric 	if (slot->intr_func == NULL) {
    399      1.1   aymeric 		slot->intr_func = func;
    400      1.1   aymeric 		slot->intr_arg = arg;
    401      1.1   aymeric 	} else {
    402      1.1   aymeric 		/* if we are here, we need to put intrs into a list */
    403      1.6   aymeric 		printf("ARGH! see " __FILE__ "\n");
    404      1.1   aymeric 		slot = NULL;
    405      1.1   aymeric 	}
    406      1.1   aymeric 	splx(s);
    407      1.1   aymeric 
    408      1.1   aymeric 	return slot;
    409      1.1   aymeric }
    410      1.1   aymeric 
    411      1.1   aymeric static void
    412  1.9.2.2  jdolecek pcf_intr_disestablish(pcmcia_chipset_handle_t pch, void *intr_handler)
    413      1.1   aymeric {
    414      1.1   aymeric 	struct pccard_slot *slot = (struct pccard_slot *) intr_handler;
    415      1.1   aymeric 
    416      1.1   aymeric 	if (slot != NULL) {
    417      1.1   aymeric 		slot->intr_func = NULL;
    418      1.1   aymeric 		slot->intr_arg = NULL;
    419      1.1   aymeric 	}
    420      1.1   aymeric }
    421      1.1   aymeric 
    422      1.1   aymeric static void
    423  1.9.2.2  jdolecek pcf_socket_enable(pcmcia_chipset_handle_t pch)
    424      1.1   aymeric {
    425      1.1   aymeric }
    426      1.1   aymeric 
    427      1.1   aymeric static void
    428  1.9.2.2  jdolecek pcf_socket_disable(pcmcia_chipset_handle_t pch)
    429      1.1   aymeric {
    430      1.1   aymeric }
    431      1.1   aymeric 
    432      1.1   aymeric 
    433      1.1   aymeric static u_int8_t
    434  1.9.2.2  jdolecek pcmio_bsr1(bus_space_handle_t h, bus_size_t o)
    435      1.1   aymeric {
    436  1.9.2.2  jdolecek 
    437      1.1   aymeric 	return *((volatile u_int8_t *) h + o + (o & 1 ? 0xffff : 0));
    438      1.1   aymeric }
    439      1.1   aymeric 
    440      1.1   aymeric static void
    441  1.9.2.2  jdolecek pcmio_bsw1(bus_space_handle_t h, bus_size_t o, unsigned v)
    442      1.1   aymeric {
    443  1.9.2.2  jdolecek 
    444      1.1   aymeric 	*((volatile u_int8_t *) h + o + (o & 1 ? 0xffff : 0)) = v;
    445      1.1   aymeric }
    446      1.1   aymeric 
    447      1.1   aymeric static void
    448  1.9.2.2  jdolecek pcmio_bsrm1(bus_space_handle_t h, bus_size_t o, u_int8_t *p, bus_size_t c)
    449      1.1   aymeric {
    450  1.9.2.2  jdolecek 	volatile u_int8_t *src = (volatile u_int8_t *)
    451  1.9.2.2  jdolecek 		(h + o + (o & 1 ? 0xffff : 0));
    452      1.1   aymeric 
    453      1.1   aymeric 
    454      1.1   aymeric 	/* XXX we can (should, must) optimize this if c >= 4 */
    455      1.1   aymeric 	for (; c > 0; c--)
    456      1.1   aymeric 		*p++ = *src;
    457      1.1   aymeric }
    458      1.1   aymeric 
    459      1.1   aymeric 
    460      1.1   aymeric static void
    461  1.9.2.2  jdolecek pcmio_bswm1(bus_space_handle_t h, bus_size_t o, const u_int8_t *p, bus_size_t c)
    462      1.1   aymeric {
    463  1.9.2.2  jdolecek 	volatile u_int8_t *dst = (volatile u_int8_t *)
    464  1.9.2.2  jdolecek 		(h + o + (o & 1 ? 0xffff : 0));
    465      1.1   aymeric 
    466      1.1   aymeric 
    467      1.1   aymeric 	/* XXX we can (should, must) optimize this if c >= 4 */
    468      1.1   aymeric 	for (; c > 0; c--)
    469      1.1   aymeric 		*dst = *p++;
    470      1.1   aymeric }
    471      1.1   aymeric 
    472      1.1   aymeric static void
    473  1.9.2.2  jdolecek pcmio_bsrr1(bus_space_handle_t h, bus_size_t o, u_int8_t *p, bus_size_t c)
    474      1.1   aymeric {
    475      1.1   aymeric 	volatile u_int8_t *cp1;
    476      1.1   aymeric 	volatile u_int8_t *cp2;
    477      1.1   aymeric 	volatile u_int8_t *temp;
    478      1.1   aymeric 
    479      1.1   aymeric 	if (o & 1) {
    480      1.1   aymeric 		cp1 = (volatile u_int8_t *) h + o + 0x10000;
    481      1.1   aymeric 		cp2 = (volatile u_int8_t *) h + o;
    482      1.1   aymeric 	} else {
    483      1.1   aymeric 		cp1 = (volatile u_int8_t *) h + o;
    484      1.1   aymeric 		cp2 = (volatile u_int8_t *) h + o + 0x10000 + 2;
    485      1.1   aymeric 	}
    486      1.1   aymeric 
    487      1.1   aymeric 	/* XXX we can (should, must) optimize this if c >= 4 */
    488      1.1   aymeric 	for (; c > 0; c--) {
    489      1.1   aymeric 		*p++ = *cp1;
    490      1.1   aymeric 		cp1 += 2;
    491      1.1   aymeric 
    492      1.1   aymeric 		/* swap pointers - hope gcc generates exg for this ;) */
    493      1.1   aymeric 		temp = cp1;
    494      1.1   aymeric 		cp1 = cp2;
    495      1.1   aymeric 		cp2 = temp;
    496      1.1   aymeric 	}
    497      1.1   aymeric }
    498      1.1   aymeric 
    499      1.1   aymeric 
    500      1.1   aymeric static void
    501  1.9.2.2  jdolecek pcmio_bswr1(bus_space_handle_t h, bus_size_t o, const u_int8_t *p, bus_size_t c)
    502      1.1   aymeric {
    503      1.1   aymeric 	volatile u_int8_t *cp1;
    504      1.1   aymeric 	volatile u_int8_t *cp2;
    505      1.1   aymeric 	volatile u_int8_t *temp;
    506      1.1   aymeric 
    507      1.1   aymeric 	if (o & 1) {
    508      1.1   aymeric 		cp1 = (volatile u_int8_t *) h + o + 0x10000;
    509      1.1   aymeric 		cp2 = (volatile u_int8_t *) h + o;
    510      1.1   aymeric 	} else {
    511      1.1   aymeric 		cp1 = (volatile u_int8_t *) h + o;
    512      1.1   aymeric 		cp2 = (volatile u_int8_t *) h + o + 0x10000 + 2;
    513      1.1   aymeric 	}
    514      1.1   aymeric 
    515      1.1   aymeric 	/* XXX we can (should, must) optimize this if c >= 4 */
    516      1.1   aymeric 	for (; c > 0; c--) {
    517      1.1   aymeric 		*cp1 = *p++;
    518      1.1   aymeric 		cp1 += 2;
    519      1.1   aymeric 
    520      1.1   aymeric 		/* swap pointers - hope gcc generates exg for this ;) */
    521      1.1   aymeric 		temp = cp1;
    522      1.1   aymeric 		cp1 = cp2;
    523      1.1   aymeric 		cp2 = temp;
    524      1.1   aymeric 	}
    525      1.1   aymeric }
    526      1.1   aymeric 
    527      1.1   aymeric void
    528  1.9.2.2  jdolecek pcmio_bssr1(bus_space_handle_t h, bus_size_t o, unsigned v, bus_size_t c)
    529      1.1   aymeric {
    530  1.9.2.2  jdolecek 
    531      1.1   aymeric 	panic("pcmio_bssr1 is not defined (" __FILE__ ")");
    532      1.1   aymeric }
    533      1.1   aymeric 
    534      1.1   aymeric void
    535  1.9.2.2  jdolecek pcmio_bscr1(bus_space_handle_t h, bus_size_t o, bus_space_handle_t g,
    536  1.9.2.2  jdolecek 	    bus_size_t q, bus_size_t c)
    537      1.1   aymeric {
    538  1.9.2.2  jdolecek 
    539      1.1   aymeric 	panic("pcmio_bscr1 is not defined (" __FILE__ ")");
    540      1.1   aymeric }
    541