Pull pnpacpi into release branch
[sfrench/cifs-2.6.git] / Documentation / pcmcia / driver-changes.txt
1 This file details changes in 2.6 which affect PCMCIA card driver authors:
2
3 * New release helper (as of 2.6.17)
4    Instead of calling pcmcia_release_{configuration,io,irq,win}, all that's
5    necessary now is calling pcmcia_disable_device. As there is no valid
6    reason left to call pcmcia_release_io and pcmcia_release_irq, the
7    exports for them were removed.
8
9 * Unify detach and REMOVAL event code, as well as attach and INSERTION
10   code (as of 2.6.16)
11        void (*remove)          (struct pcmcia_device *dev);
12        int (*probe)            (struct pcmcia_device *dev);
13
14 * Move suspend, resume and reset out of event handler (as of 2.6.16)
15        int (*suspend)          (struct pcmcia_device *dev);
16        int (*resume)           (struct pcmcia_device *dev);
17   should be initialized in struct pcmcia_driver, and handle
18   (SUSPEND == RESET_PHYSICAL) and (RESUME == CARD_RESET) events
19
20 * event handler initialization in struct pcmcia_driver (as of 2.6.13)
21    The event handler is notified of all events, and must be initialized
22    as the event() callback in the driver's struct pcmcia_driver.
23
24 * pcmcia/version.h should not be used (as of 2.6.13)
25    This file will be removed eventually.
26
27 * in-kernel device<->driver matching (as of 2.6.13)
28    PCMCIA devices and their correct drivers can now be matched in
29    kernelspace. See 'devicetable.txt' for details.
30
31 * Device model integration (as of 2.6.11)
32    A struct pcmcia_device is registered with the device model core,
33    and can be used (e.g. for SET_NETDEV_DEV) by using
34    handle_to_dev(client_handle_t * handle).
35
36 * Convert internal I/O port addresses to unsigned long (as of 2.6.11)
37    ioaddr_t should be replaced by kio_addr_t in PCMCIA card drivers.
38
39 * irq_mask and irq_list parameters (as of 2.6.11)
40    The irq_mask and irq_list parameters should no longer be used in
41    PCMCIA card drivers. Instead, it is the job of the PCMCIA core to
42    determine which IRQ should be used. Therefore, link->irq.IRQInfo2
43    is ignored.
44
45 * client->PendingEvents is gone (as of 2.6.11)
46    client->PendingEvents is no longer available.
47
48 * client->Attributes are gone (as of 2.6.11)
49    client->Attributes is unused, therefore it is removed from all
50    PCMCIA card drivers
51
52 * core functions no longer available (as of 2.6.11)
53    The following functions have been removed from the kernel source
54    because they are unused by all in-kernel drivers, and no external
55    driver was reported to rely on them:
56         pcmcia_get_first_region()
57         pcmcia_get_next_region()
58         pcmcia_modify_window()
59         pcmcia_set_event_mask()
60         pcmcia_get_first_window()
61         pcmcia_get_next_window()
62
63 * device list iteration upon module removal (as of 2.6.10)
64    It is no longer necessary to iterate on the driver's internal
65    client list and call the ->detach() function upon module removal.
66
67 * Resource management. (as of 2.6.8)
68    Although the PCMCIA subsystem will allocate resources for cards,
69    it no longer marks these resources busy. This means that driver
70    authors are now responsible for claiming your resources as per
71    other drivers in Linux. You should use request_region() to mark
72    your IO regions in-use, and request_mem_region() to mark your
73    memory regions in-use. The name argument should be a pointer to
74    your driver name. Eg, for pcnet_cs, name should point to the
75    string "pcnet_cs".
76
77 * CardServices is gone
78   CardServices() in 2.4 is just a big switch statement to call various
79   services.  In 2.6, all of those entry points are exported and called
80   directly (except for pcmcia_report_error(), just use cs_error() instead).
81
82 * struct pcmcia_driver
83   You need to use struct pcmcia_driver and pcmcia_{un,}register_driver
84   instead of {un,}register_pccard_driver