Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
bb9d6284
Commit
bb9d6284
authored
Feb 19, 2003
by
Adam Belay
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
PnP Bug Fixes
parent
18876b41
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
137 additions
and
89 deletions
+137
-89
drivers/pnp/driver.c
drivers/pnp/driver.c
+0
-3
drivers/pnp/interface.c
drivers/pnp/interface.c
+44
-15
drivers/pnp/isapnp/core.c
drivers/pnp/isapnp/core.c
+3
-4
drivers/pnp/manager.c
drivers/pnp/manager.c
+71
-60
drivers/pnp/names.c
drivers/pnp/names.c
+1
-1
drivers/pnp/pnpbios/core.c
drivers/pnp/pnpbios/core.c
+2
-2
drivers/pnp/resource.c
drivers/pnp/resource.c
+4
-3
drivers/pnp/support.c
drivers/pnp/support.c
+11
-1
drivers/pnp/system.c
drivers/pnp/system.c
+1
-0
No files found.
drivers/pnp/driver.c
View file @
bb9d6284
...
...
@@ -107,9 +107,6 @@ static int pnp_device_probe(struct device *dev)
if
(
error
<
0
)
return
error
;
}
}
else
{
if
((
pnp_drv
->
flags
&
PNP_DRIVER_DO_NOT_ACTIVATE
))
pnp_disable_dev
(
pnp_dev
);
}
error
=
0
;
if
(
pnp_drv
->
probe
&&
pnp_dev
->
active
)
{
...
...
drivers/pnp/interface.c
View file @
bb9d6284
...
...
@@ -229,6 +229,13 @@ static ssize_t pnp_show_possible_resources(struct device *dmdev, char *buf)
static
DEVICE_ATTR
(
possible
,
S_IRUGO
,
pnp_show_possible_resources
,
NULL
);
static
void
pnp_print_conflict_node
(
pnp_info_buffer_t
*
buffer
,
struct
pnp_dev
*
dev
)
{
if
(
!
dev
)
return
;
pnp_printf
(
buffer
,
"'%s'.
\n
"
,
dev
->
dev
.
bus_id
);
}
static
void
pnp_print_conflict_desc
(
pnp_info_buffer_t
*
buffer
,
int
conflict
)
{
if
(
!
conflict
)
...
...
@@ -236,31 +243,31 @@ static void pnp_print_conflict_desc(pnp_info_buffer_t *buffer, int conflict)
pnp_printf
(
buffer
,
" Conflict Detected: %2x - "
,
conflict
);
switch
(
conflict
)
{
case
CONFLICT_TYPE_RESERVED
:
pnp_printf
(
buffer
,
"
This resource was
manually reserved.
\n
"
);
pnp_printf
(
buffer
,
"manually reserved.
\n
"
);
break
;
case
CONFLICT_TYPE_IN_USE
:
pnp_printf
(
buffer
,
"
This resource resource is
currently in use.
\n
"
);
pnp_printf
(
buffer
,
"currently in use.
\n
"
);
break
;
case
CONFLICT_TYPE_PCI
:
pnp_printf
(
buffer
,
"
This resource conflicts with a
PCI device.
\n
"
);
pnp_printf
(
buffer
,
"PCI device.
\n
"
);
break
;
case
CONFLICT_TYPE_INVALID
:
pnp_printf
(
buffer
,
"
This resource is
invalid.
\n
"
);
pnp_printf
(
buffer
,
"invalid.
\n
"
);
break
;
case
CONFLICT_TYPE_INTERNAL
:
pnp_printf
(
buffer
,
"
This resource conflicts with
another resource on this device.
\n
"
);
pnp_printf
(
buffer
,
"another resource on this device.
\n
"
);
break
;
case
CONFLICT_TYPE_PNP_WARM
:
pnp_printf
(
buffer
,
"
This resource conflicts with the
active PnP device "
);
pnp_printf
(
buffer
,
"active PnP device "
);
break
;
case
CONFLICT_TYPE_PNP_COLD
:
pnp_printf
(
buffer
,
"
This resource conflicts with the resources that PnP plans to assign to the
device "
);
pnp_printf
(
buffer
,
"
disabled PnP
device "
);
break
;
default:
pnp_printf
(
buffer
,
"Unknown conflict.
\n
"
);
...
...
@@ -268,16 +275,9 @@ static void pnp_print_conflict_desc(pnp_info_buffer_t *buffer, int conflict)
}
}
static
void
pnp_print_conflict_node
(
pnp_info_buffer_t
*
buffer
,
struct
pnp_dev
*
dev
)
{
if
(
!
dev
)
return
;
pnp_printf
(
buffer
,
"%s.
\n
"
,
dev
->
dev
.
bus_id
);
}
static
void
pnp_print_conflict
(
pnp_info_buffer_t
*
buffer
,
struct
pnp_dev
*
dev
,
int
idx
,
int
type
)
{
struct
pnp_dev
*
cdev
,
*
wdev
;
struct
pnp_dev
*
cdev
,
*
wdev
=
NULL
;
int
conflict
;
switch
(
type
)
{
case
IORESOURCE_IO
:
...
...
@@ -310,6 +310,8 @@ static void pnp_print_conflict(pnp_info_buffer_t *buffer, struct pnp_dev * dev,
pnp_print_conflict_desc
(
buffer
,
conflict
);
if
(
wdev
)
pnp_print_conflict_node
(
buffer
,
wdev
);
if
(
cdev
)
{
pnp_print_conflict_desc
(
buffer
,
CONFLICT_TYPE_PNP_COLD
);
...
...
@@ -392,16 +394,43 @@ pnp_set_current_resources(struct device * dmdev, const char * ubuf, size_t count
retval
=
pnp_activate_dev
(
dev
);
goto
done
;
}
if
(
!
strnicmp
(
buf
,
"reset"
,
5
))
{
if
(
!
dev
->
active
)
goto
done
;
retval
=
pnp_disable_dev
(
dev
);
if
(
retval
)
goto
done
;
retval
=
pnp_activate_dev
(
dev
);
goto
done
;
}
if
(
!
strnicmp
(
buf
,
"auto-config"
,
11
))
{
if
(
dev
->
active
)
goto
done
;
retval
=
pnp_auto_config_dev
(
dev
);
goto
done
;
}
if
(
!
strnicmp
(
buf
,
"clear-config"
,
12
))
{
if
(
dev
->
active
)
goto
done
;
spin_lock
(
&
pnp_lock
);
dev
->
config_mode
=
PNP_CONFIG_MANUAL
;
pnp_init_resource_table
(
&
dev
->
res
);
if
(
dev
->
rule
)
dev
->
rule
->
depnum
=
0
;
spin_unlock
(
&
pnp_lock
);
goto
done
;
}
if
(
!
strnicmp
(
buf
,
"resolve"
,
7
))
{
retval
=
pnp_resolve_conflicts
(
dev
);
goto
done
;
}
if
(
!
strnicmp
(
buf
,
"get"
,
3
))
{
spin_lock
(
&
pnp_lock
);
if
(
pnp_can_read
(
dev
))
dev
->
protocol
->
get
(
dev
,
&
dev
->
res
);
spin_unlock
(
&
pnp_lock
);
goto
done
;
}
if
(
!
strnicmp
(
buf
,
"set"
,
3
))
{
if
(
dev
->
active
)
goto
done
;
...
...
drivers/pnp/isapnp/core.c
View file @
bb9d6284
...
...
@@ -765,7 +765,7 @@ static int __init isapnp_create_device(struct pnp_card *card,
/*
* Parse resource map for ISA PnP card.
*/
static
void
__init
isapnp_parse_resource_map
(
struct
pnp_card
*
card
)
{
unsigned
char
type
,
tmp
[
17
];
...
...
@@ -822,7 +822,7 @@ static unsigned char __init isapnp_checksum(unsigned char *data)
{
int
i
,
j
;
unsigned
char
checksum
=
0x6a
,
bit
,
b
;
for
(
i
=
0
;
i
<
8
;
i
++
)
{
b
=
data
[
i
];
for
(
j
=
0
;
j
<
8
;
j
++
)
{
...
...
@@ -900,7 +900,6 @@ static int isapnp_parse_current_resources(struct pnp_dev *dev, struct pnp_resour
}
for
(
tmp
=
0
;
tmp
<
PNP_MAX_DMA
;
tmp
++
)
{
ret
=
isapnp_read_byte
(
ISAPNP_CFG_DMA
+
tmp
);
pnp_info
(
"dma %d"
,
tmp
);
if
(
ret
==
4
)
continue
;
if
(
rule
.
dma
[
tmp
])
{
/* some isapnp systems forget to set this to 4 so we have to check */
...
...
@@ -1174,7 +1173,7 @@ int __init isapnp_init(void)
return
0
;
}
subsys
_initcall
(
isapnp_init
);
device
_initcall
(
isapnp_init
);
/* format is: noisapnp */
...
...
drivers/pnp/manager.c
View file @
bb9d6284
/*
* manager.c - Resource Management, Conflict Resolution, Activation and Disabling of Devices
*
* Copyright 200
2
Adam Belay <ambx1@neo.rr.com>
* Copyright 200
3
Adam Belay <ambx1@neo.rr.com>
*
*/
...
...
@@ -27,31 +27,31 @@ int pnp_max_moves = 4;
static
int
pnp_next_port
(
struct
pnp_dev
*
dev
,
int
idx
)
{
struct
pnp_port
*
port
;
unsigned
long
*
value1
,
*
value2
,
*
value3
;
unsigned
long
*
start
,
*
end
,
*
flags
;
if
(
!
dev
||
idx
<
0
||
idx
>=
PNP_MAX_PORT
)
return
0
;
port
=
dev
->
rule
->
port
[
idx
];
if
(
!
port
)
return
1
;
value1
=
&
dev
->
res
.
port_resource
[
idx
].
start
;
value2
=
&
dev
->
res
.
port_resource
[
idx
].
end
;
value3
=
&
dev
->
res
.
port_resource
[
idx
].
flags
;
start
=
&
dev
->
res
.
port_resource
[
idx
].
start
;
end
=
&
dev
->
res
.
port_resource
[
idx
].
end
;
flags
=
&
dev
->
res
.
port_resource
[
idx
].
flags
;
/* set the initial values if this is the first time */
if
(
*
value1
==
0
)
{
*
value1
=
port
->
min
;
*
value2
=
*
value1
+
port
->
size
-
1
;
*
value3
=
port
->
flags
|
IORESOURCE_IO
;
if
(
*
start
==
0
)
{
*
start
=
port
->
min
;
*
end
=
*
start
+
port
->
size
-
1
;
*
flags
=
port
->
flags
|
IORESOURCE_IO
;
if
(
!
pnp_check_port
(
dev
,
idx
))
return
1
;
}
/* run through until pnp_check_port is happy */
do
{
*
value1
+=
port
->
align
;
*
value2
=
*
value1
+
port
->
size
-
1
;
if
(
*
value1
>
port
->
max
||
!
port
->
align
)
*
start
+=
port
->
align
;
*
end
=
*
start
+
port
->
size
-
1
;
if
(
*
start
>
port
->
max
||
!
port
->
align
)
return
0
;
}
while
(
pnp_check_port
(
dev
,
idx
));
return
1
;
...
...
@@ -60,39 +60,39 @@ static int pnp_next_port(struct pnp_dev * dev, int idx)
static
int
pnp_next_mem
(
struct
pnp_dev
*
dev
,
int
idx
)
{
struct
pnp_mem
*
mem
;
unsigned
long
*
value1
,
*
value2
,
*
value3
;
unsigned
long
*
start
,
*
end
,
*
flags
;
if
(
!
dev
||
idx
<
0
||
idx
>=
PNP_MAX_MEM
)
return
0
;
mem
=
dev
->
rule
->
mem
[
idx
];
if
(
!
mem
)
return
1
;
value1
=
&
dev
->
res
.
mem_resource
[
idx
].
start
;
value2
=
&
dev
->
res
.
mem_resource
[
idx
].
end
;
value3
=
&
dev
->
res
.
mem_resource
[
idx
].
flags
;
start
=
&
dev
->
res
.
mem_resource
[
idx
].
start
;
end
=
&
dev
->
res
.
mem_resource
[
idx
].
end
;
flags
=
&
dev
->
res
.
mem_resource
[
idx
].
flags
;
/* set the initial values if this is the first time */
if
(
*
value1
==
0
)
{
*
value1
=
mem
->
min
;
*
value2
=
*
value1
+
mem
->
size
-
1
;
*
value3
=
mem
->
flags
|
IORESOURCE_MEM
;
if
(
*
start
==
0
)
{
*
start
=
mem
->
min
;
*
end
=
*
start
+
mem
->
size
-
1
;
*
flags
=
mem
->
flags
|
IORESOURCE_MEM
;
if
(
!
(
mem
->
flags
&
IORESOURCE_MEM_WRITEABLE
))
*
value3
|=
IORESOURCE_READONLY
;
*
flags
|=
IORESOURCE_READONLY
;
if
(
mem
->
flags
&
IORESOURCE_MEM_CACHEABLE
)
*
value3
|=
IORESOURCE_CACHEABLE
;
*
flags
|=
IORESOURCE_CACHEABLE
;
if
(
mem
->
flags
&
IORESOURCE_MEM_RANGELENGTH
)
*
value3
|=
IORESOURCE_RANGELENGTH
;
*
flags
|=
IORESOURCE_RANGELENGTH
;
if
(
mem
->
flags
&
IORESOURCE_MEM_SHADOWABLE
)
*
value3
|=
IORESOURCE_SHADOWABLE
;
*
flags
|=
IORESOURCE_SHADOWABLE
;
if
(
!
pnp_check_mem
(
dev
,
idx
))
return
1
;
}
/* run through until pnp_check_mem is happy */
do
{
*
value1
+=
mem
->
align
;
*
value2
=
*
value1
+
mem
->
size
-
1
;
if
(
*
value1
>
mem
->
max
||
!
mem
->
align
)
*
start
+=
mem
->
align
;
*
end
=
*
start
+
mem
->
size
-
1
;
if
(
*
start
>
mem
->
max
||
!
mem
->
align
)
return
0
;
}
while
(
pnp_check_mem
(
dev
,
idx
));
return
1
;
...
...
@@ -101,7 +101,7 @@ static int pnp_next_mem(struct pnp_dev * dev, int idx)
static
int
pnp_next_irq
(
struct
pnp_dev
*
dev
,
int
idx
)
{
struct
pnp_irq
*
irq
;
unsigned
long
*
value1
,
*
value2
,
*
value3
;
unsigned
long
*
start
,
*
end
,
*
flags
;
int
i
,
mask
;
if
(
!
dev
||
idx
<
0
||
idx
>=
PNP_MAX_IRQ
)
return
0
;
...
...
@@ -109,23 +109,23 @@ static int pnp_next_irq(struct pnp_dev * dev, int idx)
if
(
!
irq
)
return
1
;
value1
=
&
dev
->
res
.
irq_resource
[
idx
].
start
;
value2
=
&
dev
->
res
.
irq_resource
[
idx
].
end
;
value3
=
&
dev
->
res
.
irq_resource
[
idx
].
flags
;
start
=
&
dev
->
res
.
irq_resource
[
idx
].
start
;
end
=
&
dev
->
res
.
irq_resource
[
idx
].
end
;
flags
=
&
dev
->
res
.
irq_resource
[
idx
].
flags
;
/* set the initial values if this is the first time */
if
(
*
value1
==
-
1
)
{
*
value1
=
*
value2
=
0
;
*
value3
=
irq
->
flags
|
IORESOURCE_IRQ
;
if
(
*
start
==
-
1
)
{
*
start
=
*
end
=
0
;
*
flags
=
irq
->
flags
|
IORESOURCE_IRQ
;
if
(
!
pnp_check_irq
(
dev
,
idx
))
return
1
;
}
mask
=
irq
->
map
;
for
(
i
=
*
value1
+
1
;
i
<
16
;
i
++
)
for
(
i
=
*
start
+
1
;
i
<
16
;
i
++
)
{
if
(
mask
>>
i
&
0x01
)
{
*
value1
=
*
value2
=
i
;
*
start
=
*
end
=
i
;
if
(
!
pnp_check_irq
(
dev
,
idx
))
return
1
;
}
...
...
@@ -136,8 +136,7 @@ static int pnp_next_irq(struct pnp_dev * dev, int idx)
static
int
pnp_next_dma
(
struct
pnp_dev
*
dev
,
int
idx
)
{
struct
pnp_dma
*
dma
;
struct
resource
backup
;
unsigned
long
*
value1
,
*
value2
,
*
value3
;
unsigned
long
*
start
,
*
end
,
*
flags
;
int
i
,
mask
;
if
(
!
dev
||
idx
<
0
||
idx
>=
PNP_MAX_DMA
)
return
-
EINVAL
;
...
...
@@ -145,46 +144,52 @@ static int pnp_next_dma(struct pnp_dev * dev, int idx)
if
(
!
dma
)
return
1
;
value1
=
&
dev
->
res
.
dma_resource
[
idx
].
start
;
value2
=
&
dev
->
res
.
dma_resource
[
idx
].
end
;
value3
=
&
dev
->
res
.
dma_resource
[
idx
].
flags
;
*
value3
=
dma
->
flags
|
IORESOURCE_DMA
;
backup
=
dev
->
res
.
dma_resource
[
idx
];
start
=
&
dev
->
res
.
dma_resource
[
idx
].
start
;
end
=
&
dev
->
res
.
dma_resource
[
idx
].
end
;
flags
=
&
dev
->
res
.
dma_resource
[
idx
].
flags
;
/* set the initial values if this is the first time */
if
(
*
value1
==
-
1
)
{
*
value1
=
*
value2
=
0
;
*
value3
=
dma
->
flags
|
IORESOURCE_DMA
;
if
(
*
start
==
-
1
)
{
*
start
=
*
end
=
0
;
*
flags
=
dma
->
flags
|
IORESOURCE_DMA
;
if
(
!
pnp_check_dma
(
dev
,
idx
))
return
1
;
}
mask
=
dma
->
map
;
for
(
i
=
*
value1
+
1
;
i
<
8
;
i
++
)
for
(
i
=
*
start
+
1
;
i
<
8
;
i
++
)
{
if
(
mask
>>
i
&
0x01
)
{
*
value1
=
*
value2
=
i
;
*
start
=
*
end
=
i
;
if
(
!
pnp_check_dma
(
dev
,
idx
))
return
1
;
}
}
dev
->
res
.
dma_resource
[
idx
]
=
backup
;
return
0
;
}
static
int
pnp_next_rule
(
struct
pnp_dev
*
dev
)
{
int
depnum
=
dev
->
rule
->
depnum
;
int
max
=
pnp_get_max_depnum
(
dev
);
int
priority
=
PNP_RES_PRIORITY_PREFERRED
;
if
(
depnum
<
0
)
return
0
;
if
(
max
==
0
)
{
if
(
pnp_generate_rule
(
dev
,
0
,
dev
->
rule
))
{
dev
->
rule
->
depnum
=
-
1
;
return
1
;
}
}
if
(
depnum
>
0
)
{
struct
pnp_resources
*
res
=
pnp_find_resources
(
dev
,
depnum
);
priority
=
res
->
priority
;
}
for
(;
priority
<=
PNP_RES_PRIORITY_FUNCTIONAL
;
priority
++
,
depnum
=
0
)
{
for
(;
priority
<=
PNP_RES_PRIORITY_FUNCTIONAL
;
priority
++
,
depnum
=
0
)
{
depnum
+=
1
;
for
(;
depnum
<=
max
;
depnum
++
)
{
struct
pnp_resources
*
res
=
pnp_find_resources
(
dev
,
depnum
);
...
...
@@ -251,6 +256,7 @@ static void pnp_commit_changes(struct pnp_change * parent, struct pnp_change * c
if
(
!
list_empty
(
&
change
->
changes
))
list_splice_init
(
&
change
->
changes
,
&
parent
->
changes
);
}
static
int
pnp_next_config
(
struct
pnp_dev
*
dev
,
int
move
,
struct
pnp_change
*
parent
);
static
int
pnp_next_request
(
struct
pnp_dev
*
dev
,
int
move
,
struct
pnp_change
*
parent
,
struct
pnp_change
*
change
)
...
...
@@ -259,7 +265,8 @@ static int pnp_next_request(struct pnp_dev * dev, int move, struct pnp_change *
struct
pnp_dev
*
cdev
;
for
(
i
=
0
;
i
<
PNP_MAX_PORT
;
i
++
)
{
if
(
dev
->
res
.
port_resource
[
i
].
start
==
0
||
pnp_check_port_conflicts
(
dev
,
i
,
SEARCH_WARM
))
{
if
(
dev
->
res
.
port_resource
[
i
].
start
==
0
||
pnp_check_port_conflicts
(
dev
,
i
,
SEARCH_WARM
))
{
if
(
!
pnp_next_port
(
dev
,
i
))
return
0
;
}
...
...
@@ -274,7 +281,8 @@ static int pnp_next_request(struct pnp_dev * dev, int move, struct pnp_change *
pnp_commit_changes
(
parent
,
change
);
}
for
(
i
=
0
;
i
<
PNP_MAX_MEM
;
i
++
)
{
if
(
dev
->
res
.
mem_resource
[
i
].
start
==
0
||
pnp_check_mem_conflicts
(
dev
,
i
,
SEARCH_WARM
))
{
if
(
dev
->
res
.
mem_resource
[
i
].
start
==
0
||
pnp_check_mem_conflicts
(
dev
,
i
,
SEARCH_WARM
))
{
if
(
!
pnp_next_mem
(
dev
,
i
))
return
0
;
}
...
...
@@ -289,7 +297,8 @@ static int pnp_next_request(struct pnp_dev * dev, int move, struct pnp_change *
pnp_commit_changes
(
parent
,
change
);
}
for
(
i
=
0
;
i
<
PNP_MAX_IRQ
;
i
++
)
{
if
(
dev
->
res
.
irq_resource
[
i
].
start
==
-
1
||
pnp_check_irq_conflicts
(
dev
,
i
,
SEARCH_WARM
))
{
if
(
dev
->
res
.
irq_resource
[
i
].
start
==
-
1
||
pnp_check_irq_conflicts
(
dev
,
i
,
SEARCH_WARM
))
{
if
(
!
pnp_next_irq
(
dev
,
i
))
return
0
;
}
...
...
@@ -304,7 +313,8 @@ static int pnp_next_request(struct pnp_dev * dev, int move, struct pnp_change *
pnp_commit_changes
(
parent
,
change
);
}
for
(
i
=
0
;
i
<
PNP_MAX_DMA
;
i
++
)
{
if
(
dev
->
res
.
dma_resource
[
i
].
start
==
-
1
||
pnp_check_dma_conflicts
(
dev
,
i
,
SEARCH_WARM
))
{
if
(
dev
->
res
.
dma_resource
[
i
].
start
==
-
1
||
pnp_check_dma_conflicts
(
dev
,
i
,
SEARCH_WARM
))
{
if
(
!
pnp_next_dma
(
dev
,
i
))
return
0
;
}
...
...
@@ -323,12 +333,13 @@ static int pnp_next_request(struct pnp_dev * dev, int move, struct pnp_change *
static
int
pnp_next_config
(
struct
pnp_dev
*
dev
,
int
move
,
struct
pnp_change
*
parent
)
{
struct
pnp_change
*
change
=
pnp_add_change
(
parent
,
dev
)
;
struct
pnp_change
*
change
;
move
--
;
if
(
!
dev
->
rule
)
return
0
;
change
=
pnp_add_change
(
parent
,
dev
);
if
(
!
change
)
return
0
;
if
(
!
dev
->
rule
)
goto
fail
;
if
(
!
pnp_can_configure
(
dev
))
goto
fail
;
if
(
!
dev
->
rule
->
depnum
)
{
...
...
@@ -431,8 +442,6 @@ static int pnp_simple_config(struct pnp_dev * dev)
spin_unlock
(
&
pnp_lock
);
return
1
;
}
dev
->
rule
->
depnum
=
0
;
pnp_init_resource_table
(
&
dev
->
res
);
if
(
!
dev
->
rule
)
{
dev
->
rule
=
pnp_alloc
(
sizeof
(
struct
pnp_rule_table
));
if
(
!
dev
->
rule
)
{
...
...
@@ -440,6 +449,8 @@ static int pnp_simple_config(struct pnp_dev * dev)
return
-
ENOMEM
;
}
}
dev
->
rule
->
depnum
=
0
;
pnp_init_resource_table
(
&
dev
->
res
);
while
(
pnp_next_rule
(
dev
))
{
for
(
i
=
0
;
i
<
PNP_MAX_PORT
;
i
++
)
{
if
(
!
pnp_next_port
(
dev
,
i
))
...
...
drivers/pnp/names.c
View file @
bb9d6284
...
...
@@ -33,7 +33,7 @@ pnp_name_device(struct pnp_dev *dev)
char
*
name
=
dev
->
dev
.
name
;
for
(
i
=
0
;
i
<
sizeof
(
pnp_id_eisaid
)
/
sizeof
(
pnp_id_eisaid
[
0
]);
i
++
){
if
(
compare_pnp_id
(
dev
->
id
,
pnp_id_eisaid
[
i
])){
s
printf
(
name
,
"%s"
,
pnp_id_names
[
i
]);
s
nprintf
(
name
,
DEVICE_NAME_SIZE
,
"%s"
,
pnp_id_names
[
i
]);
return
;
}
}
...
...
drivers/pnp/pnpbios/core.c
View file @
bb9d6284
...
...
@@ -146,9 +146,9 @@ static struct desc_struct bad_bios_desc = { 0, 0x00409200 };
/*
* At some point we want to use this stack frame pointer to unwind
* after PnP BIOS oopses.
* after PnP BIOS oopses.
*/
u32
pnp_bios_fault_esp
;
u32
pnp_bios_fault_eip
;
u32
pnp_bios_is_utter_crap
=
0
;
...
...
drivers/pnp/resource.c
View file @
bb9d6284
...
...
@@ -2,7 +2,7 @@
* resource.c - Contains functions for registering and analyzing resource information
*
* based on isapnp.c resource management (c) Jaroslav Kysela <perex@suse.cz>
* Copyright 200
2
Adam Belay <ambx1@neo.rr.com>
* Copyright 200
3
Adam Belay <ambx1@neo.rr.com>
*
*/
...
...
@@ -598,7 +598,7 @@ int pnp_generate_rule(struct pnp_dev * dev, int depnum, struct pnp_rule_table *
struct
pnp_irq
*
irq
;
struct
pnp_dma
*
dma
;
if
(
depnum
<
=
0
||
!
rule
)
if
(
depnum
<
0
||
!
rule
)
return
-
EINVAL
;
/* independent */
...
...
@@ -631,6 +631,8 @@ int pnp_generate_rule(struct pnp_dev * dev, int depnum, struct pnp_rule_table *
}
/* dependent */
if
(
depnum
==
0
)
return
1
;
res
=
pnp_find_resources
(
dev
,
depnum
);
if
(
!
res
)
return
-
ENODEV
;
...
...
@@ -680,7 +682,6 @@ EXPORT_SYMBOL(pnp_add_irq_resource);
EXPORT_SYMBOL
(
pnp_add_dma_resource
);
EXPORT_SYMBOL
(
pnp_add_port_resource
);
EXPORT_SYMBOL
(
pnp_add_mem_resource
);
EXPORT_SYMBOL
(
pnp_add_mem32_resource
);
EXPORT_SYMBOL
(
pnp_init_resource_table
);
EXPORT_SYMBOL
(
pnp_generate_rule
);
...
...
drivers/pnp/support.c
View file @
bb9d6284
...
...
@@ -36,7 +36,7 @@
#define LARGE_TAG_ANSISTR 0x02
#define LARGE_TAG_UNICODESTR 0x03
#define LARGE_TAG_VENDOR 0x04
#define LARGE_TAG_MEM32 0x05
#define LARGE_TAG_MEM32
0x05
#define LARGE_TAG_FIXEDMEM32 0x06
...
...
@@ -143,6 +143,11 @@ unsigned char * pnp_parse_current_resources(unsigned char * p, unsigned char * e
/* ignore this for now */
break
;
}
case
LARGE_TAG_VENDOR
:
{
/* do nothing */
break
;
}
case
LARGE_TAG_MEM32
:
{
int
io
=
*
(
int
*
)
&
p
[
4
];
...
...
@@ -206,6 +211,11 @@ unsigned char * pnp_parse_current_resources(unsigned char * p, unsigned char * e
current_ioresource
(
res
,
io
,
size
);
break
;
}
case
SMALL_TAG_VENDOR
:
{
/* do nothing */
break
;
}
case
SMALL_TAG_FIXEDPORT
:
{
int
io
=
p
[
1
]
+
p
[
2
]
*
256
;
...
...
drivers/pnp/system.c
View file @
bb9d6284
...
...
@@ -93,6 +93,7 @@ static int system_pnp_probe(struct pnp_dev * dev, const struct pnp_device_id *de
static
struct
pnp_driver
system_pnp_driver
=
{
.
name
=
"system"
,
.
flags
=
PNP_DRIVER_DO_NOT_ACTIVATE
,
.
id_table
=
pnp_dev_table
,
.
probe
=
system_pnp_probe
,
.
remove
=
NULL
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment