diff options
author | Dominik Brodowski <linux@dominikbrodowski.net> | 2010-07-30 07:13:46 -0400 |
---|---|---|
committer | Dominik Brodowski <linux@dominikbrodowski.net> | 2010-09-29 11:20:24 -0400 |
commit | 00990e7ce0b0e596fe41d9c64d6933ea70084003 (patch) | |
tree | 189e0dd92860feba84231c66955749574cac5d6d /drivers/parport | |
parent | 440eed43e2a95bb842488755683716814da10f2b (diff) |
pcmcia: use autoconfiguration feature for ioports and iomem
When CONF_AUTO_SET_IO or CONF_AUTO_SET_IOMEM are set, the corresponding
fields in struct pcmcia_device *p_dev->resource[0,1,2] are set
accordinly. Drivers wishing to override certain settings may do so in
the callback function, but they no longer need to parse the CIS entries
stored in cistpl_cftable_entry_t themselves.
CC: netdev@vger.kernel.org
CC: linux-wireless@vger.kernel.org
CC: linux-ide@vger.kernel.org
CC: linux-usb@vger.kernel.org
CC: laforge@gnumonks.org
CC: linux-mtd@lists.infradead.org
CC: linux-bluetooth@vger.kernel.org
CC: alsa-devel@alsa-project.org
CC: linux-serial@vger.kernel.org
CC: Jiri Kosina <jkosina@suse.cz>
CC: linux-scsi@vger.kernel.org
Tested-by: Wolfram Sang <w.sang@pengutronix.de>
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
Diffstat (limited to 'drivers/parport')
-rw-r--r-- | drivers/parport/parport_cs.c | 34 |
1 files changed, 11 insertions, 23 deletions
diff --git a/drivers/parport/parport_cs.c b/drivers/parport/parport_cs.c index 8c2a4733bc19..3730184a04a3 100644 --- a/drivers/parport/parport_cs.c +++ b/drivers/parport/parport_cs.c | |||
@@ -100,9 +100,7 @@ static int parport_probe(struct pcmcia_device *link) | |||
100 | link->priv = info; | 100 | link->priv = info; |
101 | info->p_dev = link; | 101 | info->p_dev = link; |
102 | 102 | ||
103 | link->resource[0]->flags |= IO_DATA_PATH_WIDTH_8; | 103 | link->config_flags |= CONF_ENABLE_IRQ | CONF_AUTO_SET_IO; |
104 | link->resource[1]->flags |= IO_DATA_PATH_WIDTH_8; | ||
105 | link->config_flags |= CONF_ENABLE_IRQ; | ||
106 | 104 | ||
107 | return parport_config(link); | 105 | return parport_config(link); |
108 | } /* parport_attach */ | 106 | } /* parport_attach */ |
@@ -133,27 +131,14 @@ static void parport_detach(struct pcmcia_device *link) | |||
133 | 131 | ||
134 | ======================================================================*/ | 132 | ======================================================================*/ |
135 | 133 | ||
136 | static int parport_config_check(struct pcmcia_device *p_dev, | 134 | static int parport_config_check(struct pcmcia_device *p_dev, void *priv_data) |
137 | cistpl_cftable_entry_t *cfg, | ||
138 | cistpl_cftable_entry_t *dflt, | ||
139 | void *priv_data) | ||
140 | { | 135 | { |
141 | if ((cfg->io.nwin > 0) || (dflt->io.nwin > 0)) { | 136 | p_dev->resource[0]->flags &= ~IO_DATA_PATH_WIDTH; |
142 | cistpl_io_t *io = (cfg->io.nwin) ? &cfg->io : &dflt->io; | 137 | p_dev->resource[0]->flags |= IO_DATA_PATH_WIDTH_8; |
143 | p_dev->io_lines = io->flags & CISTPL_IO_LINES_MASK; | 138 | p_dev->resource[1]->flags &= ~IO_DATA_PATH_WIDTH; |
144 | if (epp_mode) | 139 | p_dev->resource[1]->flags |= IO_DATA_PATH_WIDTH_8; |
145 | p_dev->config_index |= FORCE_EPP_MODE; | 140 | |
146 | p_dev->resource[0]->start = io->win[0].base; | 141 | return pcmcia_request_io(p_dev); |
147 | p_dev->resource[0]->end = io->win[0].len; | ||
148 | if (io->nwin == 2) { | ||
149 | p_dev->resource[1]->start = io->win[1].base; | ||
150 | p_dev->resource[1]->end = io->win[1].len; | ||
151 | } | ||
152 | if (pcmcia_request_io(p_dev) != 0) | ||
153 | return -ENODEV; | ||
154 | return 0; | ||
155 | } | ||
156 | return -ENODEV; | ||
157 | } | 142 | } |
158 | 143 | ||
159 | static int parport_config(struct pcmcia_device *link) | 144 | static int parport_config(struct pcmcia_device *link) |
@@ -164,6 +149,9 @@ static int parport_config(struct pcmcia_device *link) | |||
164 | 149 | ||
165 | dev_dbg(&link->dev, "parport_config\n"); | 150 | dev_dbg(&link->dev, "parport_config\n"); |
166 | 151 | ||
152 | if (epp_mode) | ||
153 | link->config_index |= FORCE_EPP_MODE; | ||
154 | |||
167 | ret = pcmcia_loop_config(link, parport_config_check, NULL); | 155 | ret = pcmcia_loop_config(link, parport_config_check, NULL); |
168 | if (ret) | 156 | if (ret) |
169 | goto failed; | 157 | goto failed; |