1 // SPDX-License-Identifier: GPL-2.0
3 * compat.c - A series of functions to make it easier to convert drivers that use
4 * the old isapnp APIs. If possible use the new APIs instead.
6 * Copyright 2002 Adam Belay <ambx1@neo.rr.com>
9 #include <linux/module.h>
10 #include <linux/isapnp.h>
11 #include <linux/string.h>
13 static void pnp_convert_id(char *buf
, unsigned short vendor
,
14 unsigned short device
)
16 sprintf(buf
, "%c%c%c%x%x%x%x",
17 'A' + ((vendor
>> 2) & 0x3f) - 1,
18 'A' + (((vendor
& 3) << 3) | ((vendor
>> 13) & 7)) - 1,
19 'A' + ((vendor
>> 8) & 0x1f) - 1,
20 (device
>> 4) & 0x0f, device
& 0x0f,
21 (device
>> 12) & 0x0f, (device
>> 8) & 0x0f);
24 struct pnp_card
*pnp_find_card(unsigned short vendor
, unsigned short device
,
25 struct pnp_card
*from
)
29 struct list_head
*list
;
31 pnp_convert_id(id
, vendor
, device
);
32 pnp_convert_id(any
, ISAPNP_ANY_ID
, ISAPNP_ANY_ID
);
34 list
= from
? from
->global_list
.next
: pnp_cards
.next
;
36 while (list
!= &pnp_cards
) {
37 struct pnp_card
*card
= global_to_pnp_card(list
);
39 if (compare_pnp_id(card
->id
, id
) || (memcmp(id
, any
, 7) == 0))
46 struct pnp_dev
*pnp_find_dev(struct pnp_card
*card
, unsigned short vendor
,
47 unsigned short function
, struct pnp_dev
*from
)
52 pnp_convert_id(id
, vendor
, function
);
53 pnp_convert_id(any
, ISAPNP_ANY_ID
, ISAPNP_ANY_ID
);
54 if (card
== NULL
) { /* look for a logical device from all cards */
55 struct list_head
*list
;
57 list
= pnp_global
.next
;
59 list
= from
->global_list
.next
;
61 while (list
!= &pnp_global
) {
62 struct pnp_dev
*dev
= global_to_pnp_dev(list
);
64 if (compare_pnp_id(dev
->id
, id
) ||
65 (memcmp(id
, any
, 7) == 0))
70 struct list_head
*list
;
72 list
= card
->devices
.next
;
74 list
= from
->card_list
.next
;
75 if (from
->card
!= card
) /* something is wrong */
78 while (list
!= &card
->devices
) {
79 struct pnp_dev
*dev
= card_to_pnp_dev(list
);
81 if (compare_pnp_id(dev
->id
, id
))
89 EXPORT_SYMBOL(pnp_find_card
);
90 EXPORT_SYMBOL(pnp_find_dev
);