[BACK]Return to teles0.c CVS log [TXT][DIR] Up to [Development] / linux-2.6-xfs / drivers / isdn / hisax

File: [Development] / linux-2.6-xfs / drivers / isdn / hisax / teles0.c (download)

Revision 1.1, Tue Dec 30 23:58:53 2003 UTC (13 years, 9 months ago) by cattelan
Branch: MAIN

Initial Import 2.6.0

/* $Id: teles0.c,v 2.13.6.2 2001/09/23 22:24:52 kai Exp $
 *
 * low level stuff for Teles Memory IO isdn cards
 *
 * Author       Karsten Keil
 *              based on the teles driver from Jan den Ouden
 * Copyright    by Karsten Keil      <keil@isdn4linux.de>
 * 
 * This software may be used and distributed according to the terms
 * of the GNU General Public License, incorporated herein by reference.
 *
 * Thanks to    Jan den Ouden
 *              Fritz Elfert
 *              Beat Doebeli
 *
 */

#include <linux/init.h>
#include "hisax.h"
#include "isdnl1.h"
#include "isac.h"
#include "hscx.h"

extern const char *CardType[];

const char *teles0_revision = "$Revision: 2.13.6.2 $";

#define TELES_IOMEM_SIZE	0x400
#define byteout(addr,val) outb(val,addr)
#define bytein(addr) inb(addr)

static u8
isac_read(struct IsdnCardState *cs, u8 off)
{
	return readb(cs->hw.teles0.membase + 
		     ((off & 1) ? 0x2ff : 0x100) + off);
}

static void
isac_write(struct IsdnCardState *cs, u8 off, u8 data)
{
	writeb(data, cs->hw.teles0.membase + 
	       ((off & 1) ? 0x2ff : 0x100) + off); mb();
}


static void
isac_read_fifo(struct IsdnCardState *cs, u8 * data, int size)
{
	int i;
	void *ad = cs->hw.teles0.membase + 0x100;
	for (i = 0; i < size; i++)
		data[i] = readb(ad);
}

static void
isac_write_fifo(struct IsdnCardState *cs, u8 * data, int size)
{
	int i;
	void *ad = cs->hw.teles0.membase + 0x100;
	for (i = 0; i < size; i++) {
		writeb(data[i], ad); mb();
	}
}

static struct dc_hw_ops isac_ops = {
	.read_reg   = isac_read,
	.write_reg  = isac_write,
	.read_fifo  = isac_read_fifo,
	.write_fifo = isac_write_fifo,
};

static u8
hscx_read(struct IsdnCardState *cs, int hscx, u8 off)
{
	return readb(cs->hw.teles0.membase + (hscx ? 0x1c0 : 0x180) +
		     ((off & 1) ? 0x1ff : 0) + off);
}

static void
hscx_write(struct IsdnCardState *cs, int hscx, u8 off, u8 data)
{
	writeb(data, cs->hw.teles0.membase + (hscx ? 0x1c0 : 0x180) +
	       ((off & 1) ? 0x1ff : 0) + off); mb();
}

static void
hscx_read_fifo(struct IsdnCardState *cs, int hscx, u8 *data, int size)
{
	int i;
	void *ad = cs->hw.teles0.membase + (hscx ? 0x1c0 : 0x180);
	for (i = 0; i < size; i++)
		data[i] = readb(ad);
}

static void
hscx_write_fifo(struct IsdnCardState *cs, int hscx, u8 *data, int size)
{
	int i;
	void *ad = cs->hw.teles0.membase + (hscx ? 0x1c0 : 0x180);
	for (i = 0; i < size; i++) {
		writeb(data[i], ad);
	}
}

static struct bc_hw_ops hscx_ops = {
	.read_reg   = hscx_read,
	.write_reg  = hscx_write,
	.read_fifo  = hscx_read_fifo,
	.write_fifo = hscx_write_fifo,
};

static int
teles0_reset(struct IsdnCardState *cs)
{
	u8 cfval;

	if (cs->hw.teles0.cfg_reg) {
		switch (cs->irq) {
			case 2:
			case 9:
				cfval = 0x00;
				break;
			case 3:
				cfval = 0x02;
				break;
			case 4:
				cfval = 0x04;
				break;
			case 5:
				cfval = 0x06;
				break;
			case 10:
				cfval = 0x08;
				break;
			case 11:
				cfval = 0x0A;
				break;
			case 12:
				cfval = 0x0C;
				break;
			case 15:
				cfval = 0x0E;
				break;
			default:
				return(1);
		}
		cfval |= ((cs->hw.teles0.phymem >> 9) & 0xF0);
		byteout(cs->hw.teles0.cfg_reg + 4, cfval);
		HZDELAY(HZ / 10 + 1);
		byteout(cs->hw.teles0.cfg_reg + 4, cfval | 1);
		HZDELAY(HZ / 10 + 1);
	}
	writeb(0, cs->hw.teles0.membase + 0x80); mb();
	HZDELAY(HZ / 5 + 1);
	writeb(1, cs->hw.teles0.membase + 0x80); mb();
	HZDELAY(HZ / 5 + 1);
	return(0);
}

static struct card_ops teles0_ops = {
	.init     = inithscxisac,
	.reset    = teles0_reset,
	.release  = hisax_release_resources,
	.irq_func = hscxisac_irq,
};

static int __init
teles0_probe(struct IsdnCardState *cs, struct IsdnCard *card)
{
	cs->irq = card->para[0];
	/* 16.0 and 8.0 designed for IOM1 */
	test_and_set_bit(HW_IOM1, &cs->HW_Flags);
	cs->hw.teles0.phymem = card->para[1];
	cs->hw.teles0.membase = request_mmio(&cs->rs, cs->hw.teles0.phymem,
					     TELES_IOMEM_SIZE, "teles iomem");
	if (!cs->hw.teles0.membase)
		return -EBUSY;

	if (teles0_reset(cs)) {
		printk(KERN_WARNING "Teles0: wrong IRQ\n");
		return -EBUSY;
	}
	cs->card_ops = &teles0_ops;
	if (hscxisac_setup(cs, &isac_ops, &hscx_ops))
		return -EBUSY;

	return 0;
}

static int __init
teles16_0_probe(struct IsdnCardState *cs, struct IsdnCard *card)
{
	u8 val;

	cs->hw.teles0.cfg_reg = card->para[2];
	if (!request_io(&cs->rs, cs->hw.teles0.cfg_reg, 8, "teles cfg"))
		goto err;
		
	if ((val = bytein(cs->hw.teles0.cfg_reg + 0)) != 0x51) {
		printk(KERN_WARNING "Teles0: 16.0 Byte at %x is %x\n",
		       cs->hw.teles0.cfg_reg + 0, val);
		goto err;
	}
	if ((val = bytein(cs->hw.teles0.cfg_reg + 1)) != 0x93) {
		printk(KERN_WARNING "Teles0: 16.0 Byte at %x is %x\n",
		       cs->hw.teles0.cfg_reg + 1, val);
		goto err;
	}
	val = bytein(cs->hw.teles0.cfg_reg + 2);/* 0x1e=without AB
						 * 0x1f=with AB
						 * 0x1c 16.3 ???
						 */
	if (val != 0x1e && val != 0x1f) {
		printk(KERN_WARNING "Teles0: 16.0 Byte at %x is %x\n",
		       cs->hw.teles0.cfg_reg + 2, val);
		goto err;
	}
	if (teles0_probe(cs, card) < 0)
		goto err;

	return 0;
 err:
	hisax_release_resources(cs);
	return -EBUSY;
}

static int __init
teles8_0_probe(struct IsdnCardState *cs, struct IsdnCard *card)
{
	cs->hw.teles0.cfg_reg = 0;

	if (teles0_probe(cs, card) < 0)
		goto err;

	return 0;
 err:
	hisax_release_resources(cs);
	return -EBUSY;
}

int __init
setup_teles0(struct IsdnCard *card)
{
	char tmp[64];

	strcpy(tmp, teles0_revision);
	printk(KERN_INFO "HiSax: Teles 8.0/16.0 driver Rev. %s\n",
	       HiSax_getrev(tmp));

	if (card->cs->typ == ISDN_CTYPE_16_0) {
		if (teles16_0_probe(card->cs, card) < 0)
			return 0;
	} else {
		if (teles8_0_probe(card->cs, card) < 0)
			return 0;
	}
	return 1;
}