Skip to content

Commit

Permalink
pcmcia: replace struct irq with uint pcmcia_irq in struct pcmcia_socket
Browse files Browse the repository at this point in the history
As we don't need the "Config" counter any more, we can simplify
struct pcmcia_socket.

Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
  • Loading branch information
Dominik Brodowski committed May 10, 2010
1 parent 6f0f38c commit 6f840af
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 31 deletions.
2 changes: 1 addition & 1 deletion drivers/pcmcia/bfin_cf_pcmcia.c
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ static int bfin_cf_get_status(struct pcmcia_socket *s, u_int *sp)

if (bfin_cf_present(cf->cd_pfx)) {
*sp = SS_READY | SS_DETECT | SS_POWERON | SS_3VCARD;
s->irq.AssignedIRQ = 0;
s->pcmcia_irq = 0;
s->pci_irq = cf->irq;

} else
Expand Down
1 change: 0 additions & 1 deletion drivers/pcmcia/cardbus.c
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ int __ref cb_alloc(struct pcmcia_socket *s)
pci_enable_bridges(bus);
pci_bus_add_devices(bus);

s->irq.AssignedIRQ = s->pci_irq;
return 0;
}

Expand Down
1 change: 0 additions & 1 deletion drivers/pcmcia/cs.c
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,6 @@ static void socket_shutdown(struct pcmcia_socket *s)
s->socket = dead_socket;
s->ops->init(s);
s->ops->set_socket(s, &s->socket);
s->irq.AssignedIRQ = s->irq.Config = 0;
s->lock_count = 0;
kfree(s->fake_cis);
s->fake_cis = NULL;
Expand Down
2 changes: 1 addition & 1 deletion drivers/pcmcia/omap_cf.c
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ static int omap_cf_get_status(struct pcmcia_socket *s, u_int *sp)

*sp = SS_READY | SS_DETECT | SS_POWERON | SS_3VCARD;
cf = container_of(s, struct omap_cf_socket, socket);
s->irq.AssignedIRQ = 0;
s->pcmcia_irq = 0;
s->pci_irq = cf->irq;
} else
*sp = 0;
Expand Down
4 changes: 2 additions & 2 deletions drivers/pcmcia/pcmcia_ioctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ static int pccard_get_configuration_info(struct pcmcia_socket *s,
if (s->state & SOCKET_CARDBUS_CONFIG) {
config->Attributes = CONF_VALID_CLIENT;
config->IntType = INT_CARDBUS;
config->AssignedIRQ = s->irq.AssignedIRQ;
config->AssignedIRQ = s->pcmcia_irq;
if (config->AssignedIRQ)
config->Attributes |= CONF_ENABLE_IRQ;
if (s->io[0].res) {
Expand Down Expand Up @@ -391,7 +391,7 @@ static int pccard_get_configuration_info(struct pcmcia_socket *s,
config->ExtStatus = c->ExtStatus;
config->Present = config->CardValues = c->CardValues;
config->IRQAttributes = c->irq.Attributes;
config->AssignedIRQ = s->irq.AssignedIRQ;
config->AssignedIRQ = s->pcmcia_irq;
config->BasePort1 = c->io.BasePort1;
config->NumPorts1 = c->io.NumPorts1;
config->Attributes1 = c->io.Attributes1;
Expand Down
31 changes: 10 additions & 21 deletions drivers/pcmcia/pcmcia_resource.c
Original file line number Diff line number Diff line change
Expand Up @@ -430,13 +430,10 @@ static int pcmcia_release_irq(struct pcmcia_device *p_dev, irq_req_t *req)
dev_dbg(&s->dev, "IRQ attributes must match assigned ones\n");
goto out;
}
if (s->irq.AssignedIRQ != req->AssignedIRQ) {
if (s->pcmcia_irq != req->AssignedIRQ) {
dev_dbg(&s->dev, "IRQ must match assigned one\n");
goto out;
}
if (--s->irq.Config == 0) {
c->state &= ~CONFIG_IRQ_REQ;
}

if (req->Handler)
free_irq(req->AssignedIRQ, p_dev->priv);
Expand Down Expand Up @@ -533,7 +530,7 @@ int pcmcia_request_configuration(struct pcmcia_device *p_dev,
if (req->Attributes & CONF_ENABLE_SPKR)
s->socket.flags |= SS_SPKR_ENA;
if (req->Attributes & CONF_ENABLE_IRQ)
s->socket.io_irq = s->irq.AssignedIRQ;
s->socket.io_irq = s->pcmcia_irq;
else
s->socket.io_irq = 0;
s->ops->set_socket(s, &s->socket);
Expand All @@ -556,7 +553,7 @@ int pcmcia_request_configuration(struct pcmcia_device *p_dev,
if (req->Present & PRESENT_IOBASE_0)
c->Option |= COR_ADDR_DECODE;
}
if (c->state & CONFIG_IRQ_REQ)
if (req->Attributes & CONF_ENABLE_IRQ)
if (!(c->irq.Attributes & IRQ_FORCED_PULSE))
c->Option |= COR_LEVEL_REQ;
pcmcia_write_cis_mem(s, 1, (base + CISREG_COR)>>1, 1, &c->Option);
Expand Down Expand Up @@ -711,10 +708,6 @@ int pcmcia_request_irq(struct pcmcia_device *p_dev, irq_req_t *req)
dev_dbg(&s->dev, "Configuration is locked\n");
goto out;
}
if (c->state & CONFIG_IRQ_REQ) {
dev_dbg(&s->dev, "IRQ already configured\n");
goto out;
}

if (!irq) {
dev_dbg(&s->dev, "no IRQ available\n");
Expand All @@ -723,8 +716,6 @@ int pcmcia_request_irq(struct pcmcia_device *p_dev, irq_req_t *req)

if (!(req->Attributes & IRQ_TYPE_DYNAMIC_SHARING)) {
req->Attributes |= IRQ_TYPE_DYNAMIC_SHARING;
dev_printk(KERN_WARNING, &p_dev->dev, "pcmcia: "
"request for exclusive IRQ could not be fulfilled.\n");
dev_printk(KERN_WARNING, &p_dev->dev, "pcmcia: the driver "
"needs updating to supported shared IRQ lines.\n");
}
Expand All @@ -741,9 +732,7 @@ int pcmcia_request_irq(struct pcmcia_device *p_dev, irq_req_t *req)

c->irq.Attributes = req->Attributes;
req->AssignedIRQ = irq;
s->irq.Config++;

c->state |= CONFIG_IRQ_REQ;
p_dev->_irq = 1;

ret = 0;
Expand Down Expand Up @@ -795,7 +784,7 @@ static int pcmcia_setup_isa_irq(struct pcmcia_device *p_dev, int type)
p_dev);
if (!ret) {
free_irq(irq, p_dev);
p_dev->irq_v = s->irq.AssignedIRQ = irq;
p_dev->irq_v = s->pcmcia_irq = irq;
pcmcia_used_irq[irq]++;
break;
}
Expand All @@ -806,8 +795,8 @@ static int pcmcia_setup_isa_irq(struct pcmcia_device *p_dev, int type)

void pcmcia_cleanup_irq(struct pcmcia_socket *s)
{
pcmcia_used_irq[s->irq.AssignedIRQ]--;
s->irq.AssignedIRQ = 0;
pcmcia_used_irq[s->pcmcia_irq]--;
s->pcmcia_irq = 0;
}

#else /* CONFIG_PCMCIA_PROBE */
Expand All @@ -819,7 +808,7 @@ static int pcmcia_setup_isa_irq(struct pcmcia_device *p_dev, int type)

void pcmcia_cleanup_irq(struct pcmcia_socket *s)
{
s->irq.AssignedIRQ = 0;
s->pcmcia_irq = 0;
return;
}

Expand All @@ -840,8 +829,8 @@ int pcmcia_setup_irq(struct pcmcia_device *p_dev)
return 0;

/* already assigned? */
if (s->irq.AssignedIRQ) {
p_dev->irq_v = s->irq.AssignedIRQ;
if (s->pcmcia_irq) {
p_dev->irq_v = s->pcmcia_irq;
return 0;
}

Expand All @@ -855,7 +844,7 @@ int pcmcia_setup_irq(struct pcmcia_device *p_dev)

/* but use the PCI irq otherwise */
if (s->pci_irq) {
p_dev->irq_v = s->irq.AssignedIRQ = s->pci_irq;
p_dev->irq_v = s->pcmcia_irq = s->pci_irq;
return 0;
}

Expand Down
7 changes: 3 additions & 4 deletions include/pcmcia/ss.h
Original file line number Diff line number Diff line change
Expand Up @@ -141,10 +141,6 @@ struct pcmcia_socket {
u_short lock_count;
pccard_mem_map cis_mem;
void __iomem *cis_virt;
struct {
u_int AssignedIRQ;
u_int Config;
} irq;
io_window_t io[MAX_IO_WIN];
pccard_mem_map win[MAX_WIN];
struct list_head cis_cache;
Expand Down Expand Up @@ -235,6 +231,9 @@ struct pcmcia_socket {
/* non-zero if PCMCIA card is present */
atomic_t present;

/* IRQ to be used by PCMCIA devices. May not be IRQ 0. */
unsigned int pcmcia_irq;

#ifdef CONFIG_PCMCIA_IOCTL
struct user_info_t *user;
wait_queue_head_t queue;
Expand Down

0 comments on commit 6f840af

Please sign in to comment.