Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
44bdef5e
Commit
44bdef5e
authored
Jun 22, 2006
by
David S. Miller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[SPARC64]: Convert Cheetah memory controller driver to in-kernel PROM tree.
Signed-off-by:
David S. Miller
<
davem@davemloft.net
>
parent
cecc4e92
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
44 deletions
+25
-44
arch/sparc64/kernel/chmc.c
arch/sparc64/kernel/chmc.c
+25
-44
No files found.
arch/sparc64/kernel/chmc.c
View file @
44bdef5e
...
...
@@ -17,6 +17,7 @@
#include <asm/spitfire.h>
#include <asm/chmctrl.h>
#include <asm/oplib.h>
#include <asm/prom.h>
#include <asm/io.h>
#define CHMCTRL_NDGRPS 2
...
...
@@ -67,7 +68,6 @@ struct bank_info {
struct
mctrl_info
{
struct
list_head
list
;
int
portid
;
int
index
;
struct
obp_mem_layout
layout_prop
;
int
layout_size
;
...
...
@@ -339,12 +339,13 @@ static void fetch_decode_regs(struct mctrl_info *mp)
read_mcreg
(
mp
,
CHMCTRL_DECODE4
));
}
static
int
init_one_mctrl
(
int
node
,
int
index
)
static
int
init_one_mctrl
(
struct
device_node
*
dp
)
{
struct
mctrl_info
*
mp
=
kmalloc
(
sizeof
(
*
mp
),
GFP_KERNEL
);
int
portid
=
prom_getintdefault
(
node
,
"portid"
,
-
1
);
struct
linux_prom64_registers
p_reg_prop
;
int
t
;
int
portid
=
of_getintprop_default
(
dp
,
"portid"
,
-
1
);
struct
linux_prom64_registers
*
regs
;
void
*
pval
;
int
len
;
if
(
!
mp
)
return
-
1
;
...
...
@@ -353,24 +354,21 @@ static int init_one_mctrl(int node, int index)
goto
fail
;
mp
->
portid
=
portid
;
mp
->
layout_size
=
prom_getproplen
(
node
,
"memory-layout"
);
if
(
mp
->
layout_size
<
0
)
pval
=
of_get_property
(
dp
,
"memory-layout"
,
&
len
);
mp
->
layout_size
=
len
;
if
(
!
pval
)
mp
->
layout_size
=
0
;
if
(
mp
->
layout_size
>
sizeof
(
mp
->
layout_prop
))
goto
fail
;
if
(
mp
->
layout_size
>
0
)
prom_getproperty
(
node
,
"memory-layout"
,
(
char
*
)
&
mp
->
layout_prop
,
mp
->
layout_size
);
else
{
if
(
mp
->
layout_size
>
sizeof
(
mp
->
layout_prop
))
goto
fail
;
memcpy
(
&
mp
->
layout_prop
,
pval
,
len
);
}
t
=
prom_getproperty
(
node
,
"reg"
,
(
char
*
)
&
p_reg_prop
,
sizeof
(
p_reg_prop
));
if
(
t
<
0
||
p_reg_prop
.
reg_size
!=
0x48
)
regs
=
of_get_property
(
dp
,
"reg"
,
NULL
);
if
(
!
regs
||
regs
->
reg_size
!=
0x48
)
goto
fail
;
mp
->
regs
=
ioremap
(
p_reg_prop
.
phys_addr
,
p_reg_prop
.
reg_size
);
mp
->
regs
=
ioremap
(
regs
->
phys_addr
,
regs
->
reg_size
);
if
(
mp
->
regs
==
NULL
)
goto
fail
;
...
...
@@ -384,13 +382,11 @@ static int init_one_mctrl(int node, int index)
fetch_decode_regs
(
mp
);
mp
->
index
=
index
;
list_add
(
&
mp
->
list
,
&
mctrl_list
);
/* Report the device. */
printk
(
KERN_INFO
"
chmc%d
: US3 memory controller at %p [%s]
\n
"
,
mp
->
index
,
printk
(
KERN_INFO
"
%s
: US3 memory controller at %p [%s]
\n
"
,
dp
->
full_name
,
mp
->
regs
,
(
mp
->
layout_size
?
"ACTIVE"
:
"INACTIVE"
));
return
0
;
...
...
@@ -404,34 +400,19 @@ fail:
return
-
1
;
}
static
int
__init
probe_for_string
(
char
*
name
,
int
index
)
{
int
node
=
prom_getchild
(
prom_root_node
);
while
((
node
=
prom_searchsiblings
(
node
,
name
))
!=
0
)
{
int
ret
=
init_one_mctrl
(
node
,
index
);
if
(
!
ret
)
index
++
;
node
=
prom_getsibling
(
node
);
if
(
!
node
)
break
;
}
return
index
;
}
static
int
__init
chmc_init
(
void
)
{
int
index
;
struct
device_node
*
dp
;
/* This driver is only for cheetah platforms. */
if
(
tlb_type
!=
cheetah
&&
tlb_type
!=
cheetah_plus
)
return
-
ENODEV
;
index
=
probe_for_string
(
"memory-controller"
,
0
);
index
=
probe_for_string
(
"mc-us3"
,
index
);
for_each_node_by_name
(
dp
,
"memory-controller"
)
init_one_mctrl
(
dp
);
for_each_node_by_name
(
dp
,
"mc-us3"
)
init_one_mctrl
(
dp
);
return
0
;
}
...
...
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