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 /Documentation/pcmcia | |
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 'Documentation/pcmcia')
-rw-r--r-- | Documentation/pcmcia/driver-changes.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Documentation/pcmcia/driver-changes.txt b/Documentation/pcmcia/driver-changes.txt index 62a029f24f46..dd04361dd361 100644 --- a/Documentation/pcmcia/driver-changes.txt +++ b/Documentation/pcmcia/driver-changes.txt | |||
@@ -1,4 +1,16 @@ | |||
1 | This file details changes in 2.6 which affect PCMCIA card driver authors: | 1 | This file details changes in 2.6 which affect PCMCIA card driver authors: |
2 | * pcmcia_loop_config() and autoconfiguration (as of 2.6.36) | ||
3 | If struct pcmcia_device *p_dev->config_flags is set accordingly, | ||
4 | pcmcia_loop_config() now sets up certain configuration values | ||
5 | automatically, though the driver may still override the settings | ||
6 | in the callback function. The following autoconfiguration options | ||
7 | are provided at the moment: | ||
8 | CONF_AUTO_CHECK_VCC : check for matching Vcc | ||
9 | CONF_AUTO_SET_VPP : set Vpp | ||
10 | CONF_AUTO_AUDIO : auto-enable audio line, if required | ||
11 | CONF_AUTO_SET_IO : set ioport resources (->resource[0,1]) | ||
12 | CONF_AUTO_SET_IOMEM : set first iomem resource (->resource[2]) | ||
13 | |||
2 | * pcmcia_request_configuration -> pcmcia_enable_device (as of 2.6.36) | 14 | * pcmcia_request_configuration -> pcmcia_enable_device (as of 2.6.36) |
3 | pcmcia_request_configuration() got renamed to pcmcia_enable_device(), | 15 | pcmcia_request_configuration() got renamed to pcmcia_enable_device(), |
4 | as it mirrors pcmcia_disable_device(). Configuration settings are now | 16 | as it mirrors pcmcia_disable_device(). Configuration settings are now |