Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 43725
b: refs/heads/master
c: 845bead
h: refs/heads/master
i:
  43723: 395375d
v: v3
  • Loading branch information
Jiri Slaby authored and Linus Torvalds committed Dec 8, 2006
1 parent a0e7a03 commit 3e6ada2
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 50 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: aeaccfe42510d2c009a2c36452d220a5f4a0363e
refs/heads/master: 845bead4c3f2a65d2c25f0cb2fe82444b9057cbc
116 changes: 67 additions & 49 deletions trunk/drivers/char/istallion.c
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,6 @@ static int stli_eisamempsize = ARRAY_SIZE(stli_eisamemprobeaddrs);
/*
* Define the Stallion PCI vendor and device IDs.
*/
#ifdef CONFIG_PCI
#ifndef PCI_VENDOR_ID_STALLION
#define PCI_VENDOR_ID_STALLION 0x124d
#endif
Expand All @@ -416,7 +415,7 @@ static struct pci_device_id istallion_pci_tbl[] = {
};
MODULE_DEVICE_TABLE(pci, istallion_pci_tbl);

#endif /* CONFIG_PCI */
static struct pci_driver stli_pcidriver;

/*****************************************************************************/

Expand Down Expand Up @@ -728,10 +727,6 @@ static int stli_initonb(stlibrd_t *brdp);
static int stli_eisamemprobe(stlibrd_t *brdp);
static int stli_initports(stlibrd_t *brdp);

#ifdef CONFIG_PCI
static int stli_initpcibrd(int brdtype, struct pci_dev *devp);
#endif

/*****************************************************************************/

/*
Expand Down Expand Up @@ -768,6 +763,21 @@ static int stli_timeron;

static struct class *istallion_class;

static void stli_cleanup_ports(stlibrd_t *brdp)
{
stliport_t *portp;
unsigned int j;

for (j = 0; j < STL_MAXPORTS; j++) {
portp = brdp->ports[j];
if (portp != NULL) {
if (portp->tty != NULL)
tty_hangup(portp->tty);
kfree(portp);
}
}
}

/*
* Loadable module initialization stuff.
*/
Expand All @@ -783,12 +793,12 @@ static int __init istallion_module_init(void)
static void __exit istallion_module_exit(void)
{
stlibrd_t *brdp;
stliport_t *portp;
int i, j;
int i;

printk(KERN_INFO "Unloading %s: version %s\n", stli_drvtitle,
stli_drvversion);

pci_unregister_driver(&stli_pcidriver);
/*
* Free up all allocated resources used by the ports. This includes
* memory and interrupts.
Expand Down Expand Up @@ -817,14 +827,8 @@ static void __exit istallion_module_exit(void)
for (i = 0; (i < stli_nrbrds); i++) {
if ((brdp = stli_brds[i]) == NULL)
continue;
for (j = 0; (j < STL_MAXPORTS); j++) {
portp = brdp->ports[j];
if (portp != NULL) {
if (portp->tty != NULL)
tty_hangup(portp->tty);
kfree(portp);
}
}

stli_cleanup_ports(brdp);

iounmap(brdp->membase);
if (brdp->iosize > 0)
Expand Down Expand Up @@ -3777,7 +3781,7 @@ static int stli_startbrd(stlibrd_t *brdp)
* Probe and initialize the specified board.
*/

static int __init stli_brdinit(stlibrd_t *brdp)
static int __devinit stli_brdinit(stlibrd_t *brdp)
{
stli_brds[brdp->brdnr] = brdp;

Expand Down Expand Up @@ -4019,58 +4023,72 @@ static int stli_findeisabrds(void)

/*****************************************************************************/

#ifdef CONFIG_PCI

/*
* We have a Stallion board. Allocate a board structure and
* initialize it. Read its IO and MEMORY resources from PCI
* configuration space.
*/

static int stli_initpcibrd(int brdtype, struct pci_dev *devp)
static int __devinit stli_pciprobe(struct pci_dev *pdev,
const struct pci_device_id *ent)
{
stlibrd_t *brdp;

if (pci_enable_device(devp))
return -EIO;
if ((brdp = stli_allocbrd()) == NULL)
return -ENOMEM;
if ((brdp->brdnr = stli_getbrdnr()) < 0) {
int retval = -EIO;

retval = pci_enable_device(pdev);
if (retval)
goto err;
brdp = stli_allocbrd();
if (brdp == NULL) {
retval = -ENOMEM;
goto err;
}
if ((brdp->brdnr = stli_getbrdnr()) < 0) { /* TODO: locking */
printk(KERN_INFO "STALLION: too many boards found, "
"maximum supported %d\n", STL_MAXBRDS);
return 0;
retval = -EIO;
goto err_fr;
}
brdp->brdtype = brdtype;
brdp->brdtype = BRD_ECPPCI;
/*
* We have all resources from the board, so lets setup the actual
* board structure now.
*/
brdp->iobase = pci_resource_start(devp, 3);
brdp->memaddr = pci_resource_start(devp, 2);
stli_brdinit(brdp);
brdp->iobase = pci_resource_start(pdev, 3);
brdp->memaddr = pci_resource_start(pdev, 2);
retval = stli_brdinit(brdp);
if (retval)
goto err_fr;

pci_set_drvdata(pdev, brdp);

return 0;
err_fr:
kfree(brdp);
err:
return retval;
}

/*****************************************************************************/
static void stli_pciremove(struct pci_dev *pdev)
{
stlibrd_t *brdp = pci_get_drvdata(pdev);

/*
* Find all Stallion PCI boards that might be installed. Initialize each
* one as it is found.
*/
stli_cleanup_ports(brdp);

static int stli_findpcibrds(void)
{
struct pci_dev *dev = NULL;
iounmap(brdp->membase);
if (brdp->iosize > 0)
release_region(brdp->iobase, brdp->iosize);

while ((dev = pci_get_device(PCI_VENDOR_ID_STALLION, PCI_DEVICE_ID_ECRA, dev))) {
stli_initpcibrd(BRD_ECPPCI, dev);
}
return 0;
stli_brds[brdp->brdnr] = NULL;
kfree(brdp);
}

#endif

static struct pci_driver stli_pcidriver = {
.name = "istallion",
.id_table = istallion_pci_tbl,
.probe = stli_pciprobe,
.remove = __devexit_p(stli_pciremove)
};
/*****************************************************************************/

/*
Expand Down Expand Up @@ -4102,7 +4120,7 @@ static int stli_initbrds(void)
{
stlibrd_t *brdp, *nxtbrdp;
stlconf_t *confp;
int i, j;
int i, j, retval;

if (stli_nrbrds > STL_MAXBRDS) {
printk(KERN_INFO "STALLION: too many boards in configuration "
Expand Down Expand Up @@ -4134,9 +4152,9 @@ static int stli_initbrds(void)
stli_argbrds();
if (STLI_EISAPROBE)
stli_findeisabrds();
#ifdef CONFIG_PCI
stli_findpcibrds();
#endif

retval = pci_register_driver(&stli_pcidriver);
/* TODO: check retval and do something */

/*
* All found boards are initialized. Now for a little optimization, if
Expand Down

0 comments on commit 3e6ada2

Please sign in to comment.