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
nexedi
linux
Commits
1c03a55c
Commit
1c03a55c
authored
Sep 10, 2008
by
David S. Miller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sparc64: Create and use psycho_pbm_init_common().
Signed-off-by:
David S. Miller
<
davem@davemloft.net
>
parent
a21cff3e
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
31 additions
and
46 deletions
+31
-46
arch/sparc64/kernel/pci_psycho.c
arch/sparc64/kernel/pci_psycho.c
+4
-28
arch/sparc64/kernel/pci_sabre.c
arch/sparc64/kernel/pci_sabre.c
+1
-18
arch/sparc64/kernel/psycho_common.c
arch/sparc64/kernel/psycho_common.c
+22
-0
arch/sparc64/kernel/psycho_common.h
arch/sparc64/kernel/psycho_common.h
+4
-0
No files found.
arch/sparc64/kernel/pci_psycho.c
View file @
1c03a55c
...
...
@@ -895,35 +895,8 @@ static void psycho_pbm_strbuf_init(struct pci_pbm_info *pbm,
static
void
__init
psycho_pbm_init
(
struct
pci_pbm_info
*
pbm
,
struct
of_device
*
op
,
int
is_pbm_a
)
{
struct
device_node
*
dp
=
op
->
node
;
pbm
->
next
=
pci_pbm_root
;
pci_pbm_root
=
pbm
;
pbm
->
numa_node
=
-
1
;
pbm
->
pci_ops
=
&
sun4u_pci_ops
;
pbm
->
config_space_reg_bits
=
8
;
pbm
->
index
=
pci_num_pbms
++
;
pbm
->
chip_type
=
PBM_CHIP_TYPE_PSYCHO
;
pbm
->
chip_version
=
of_getintprop_default
(
dp
,
"version#"
,
0
);
pbm
->
chip_revision
=
of_getintprop_default
(
dp
,
"module-revision#"
,
0
);
pbm
->
op
=
op
;
pbm
->
name
=
dp
->
full_name
;
printk
(
KERN_INFO
"%s: PSYCHO PCI Bus Module ver[%x:%x]
\n
"
,
pbm
->
name
,
pbm
->
chip_version
,
pbm
->
chip_revision
);
pci_determine_mem_io_space
(
pbm
);
pci_get_pbm_props
(
pbm
);
psycho_pbm_init_common
(
pbm
,
op
,
"PSYCHO"
,
PBM_CHIP_TYPE_PSYCHO
);
psycho_pbm_strbuf_init
(
pbm
,
is_pbm_a
);
psycho_scan_bus
(
pbm
,
&
op
->
dev
);
}
...
...
@@ -1009,6 +982,9 @@ static int __devinit psycho_probe(struct of_device *op,
psycho_pbm_init
(
pbm
,
op
,
is_pbm_a
);
pbm
->
next
=
pci_pbm_root
;
pci_pbm_root
=
pbm
;
if
(
pbm
->
sibling
)
pbm
->
sibling
->
sibling
=
pbm
;
...
...
arch/sparc64/kernel/pci_sabre.c
View file @
1c03a55c
...
...
@@ -678,24 +678,7 @@ static void __init sabre_scan_bus(struct pci_pbm_info *pbm,
static
void
__init
sabre_pbm_init
(
struct
pci_pbm_info
*
pbm
,
struct
of_device
*
op
)
{
struct
device_node
*
dp
=
op
->
node
;
pbm
->
name
=
dp
->
full_name
;
printk
(
"%s: SABRE PCI Bus Module
\n
"
,
pbm
->
name
);
pbm
->
numa_node
=
-
1
;
pbm
->
pci_ops
=
&
sun4u_pci_ops
;
pbm
->
config_space_reg_bits
=
8
;
pbm
->
index
=
pci_num_pbms
++
;
pbm
->
chip_type
=
PBM_CHIP_TYPE_SABRE
;
pbm
->
op
=
op
;
pci_get_pbm_props
(
pbm
);
pci_determine_mem_io_space
(
pbm
);
psycho_pbm_init_common
(
pbm
,
op
,
"SABRE"
,
PBM_CHIP_TYPE_SABRE
);
sabre_scan_bus
(
pbm
,
&
op
->
dev
);
}
...
...
arch/sparc64/kernel/psycho_common.c
View file @
1c03a55c
...
...
@@ -91,3 +91,25 @@ int psycho_iommu_init(struct pci_pbm_info *pbm, int tsbsize,
return
0
;
}
void
psycho_pbm_init_common
(
struct
pci_pbm_info
*
pbm
,
struct
of_device
*
op
,
const
char
*
chip_name
,
int
chip_type
)
{
struct
device_node
*
dp
=
op
->
node
;
pbm
->
name
=
dp
->
full_name
;
pbm
->
numa_node
=
-
1
;
pbm
->
chip_type
=
chip_type
;
pbm
->
chip_version
=
of_getintprop_default
(
dp
,
"version#"
,
0
);
pbm
->
chip_revision
=
of_getintprop_default
(
dp
,
"module-revision#"
,
0
);
pbm
->
op
=
op
;
pbm
->
pci_ops
=
&
sun4u_pci_ops
;
pbm
->
config_space_reg_bits
=
8
;
pbm
->
index
=
pci_num_pbms
++
;
pci_get_pbm_props
(
pbm
);
pci_determine_mem_io_space
(
pbm
);
printk
(
KERN_INFO
"%s: %s PCI Bus Module ver[%x:%x]
\n
"
,
pbm
->
name
,
chip_name
,
pbm
->
chip_version
,
pbm
->
chip_revision
);
}
arch/sparc64/kernel/psycho_common.h
View file @
1c03a55c
...
...
@@ -5,4 +5,8 @@ extern int psycho_iommu_init(struct pci_pbm_info *pbm, int tsbsize,
u32
dvma_offset
,
u32
dma_mask
,
unsigned
long
write_complete_offset
);
extern
void
psycho_pbm_init_common
(
struct
pci_pbm_info
*
pbm
,
struct
of_device
*
op
,
const
char
*
chip_name
,
int
chip_type
);
#endif
/* _PSYCHO_COMMON_H */
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