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
962a7e51
Commit
962a7e51
authored
Nov 06, 2002
by
Anton Blanchard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ppc64: updates from Dave Engebretsen in 2.4
parent
46609240
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
60 additions
and
54 deletions
+60
-54
arch/ppc64/kernel/htab.c
arch/ppc64/kernel/htab.c
+46
-37
arch/ppc64/kernel/pSeries_htab.c
arch/ppc64/kernel/pSeries_htab.c
+4
-4
arch/ppc64/kernel/pSeries_lpar.c
arch/ppc64/kernel/pSeries_lpar.c
+7
-7
arch/ppc64/kernel/udbg.c
arch/ppc64/kernel/udbg.c
+1
-4
include/asm-ppc64/machdep.h
include/asm-ppc64/machdep.h
+2
-2
No files found.
arch/ppc64/kernel/htab.c
View file @
962a7e51
...
...
@@ -50,6 +50,13 @@
/*
* Note: pte --> Linux PTE
* HPTE --> PowerPC Hashed Page Table Entry
*
* Execution context:
* htab_initialize is called with the MMU off (of course), but
* the kernel has been copied down to zero so it can directly
* reference global data. At this point it is very difficult
* to print debug info.
*
*/
HTAB
htab_data
=
{
NULL
,
0
,
0
,
0
,
0
};
...
...
@@ -57,20 +64,23 @@ HTAB htab_data = {NULL, 0, 0, 0, 0};
extern
unsigned
long
_SDR1
;
extern
unsigned
long
klimit
;
extern
unsigned
long
reloc_offset
(
void
);
#define PTRRELOC(x) ((typeof(x))((unsigned long)(x) - offset))
#define PTRUNRELOC(x) ((typeof(x))((unsigned long)(x) + offset))
#define RELOC(x) (*PTRRELOC(&(x)))
#define KB (1024)
#define MB (1024*KB)
static
inline
void
loop_forever
(
void
)
{
volatile
unsigned
long
x
=
1
;
for
(;
x
;
x
|=
1
)
;
}
static
inline
void
create_pte_mapping
(
unsigned
long
start
,
unsigned
long
end
,
unsigned
long
mode
,
unsigned
long
mask
,
int
large
)
{
unsigned
long
addr
,
offset
=
reloc_offset
();
HTAB
*
_htab_data
=
PTRRELOC
(
&
htab_data
);
HPTE
*
htab
=
(
HPTE
*
)
__v2a
(
_htab_data
->
htab
);
unsigned
long
addr
;
HPTE
*
htab
=
(
HPTE
*
)
__v2a
(
htab_data
.
htab
);
unsigned
int
step
;
if
(
large
)
...
...
@@ -96,15 +106,12 @@ htab_initialize(void)
unsigned
long
table
,
htab_size_bytes
;
unsigned
long
pteg_count
;
unsigned
long
mode_rw
,
mask
;
unsigned
long
offset
=
reloc_offset
();
struct
naca_struct
*
_naca
=
RELOC
(
naca
);
HTAB
*
_htab_data
=
PTRRELOC
(
&
htab_data
);
/*
* Calculate the required size of the htab. We want the number of
* PTEGs to equal one half the number of real pages.
*/
htab_size_bytes
=
1UL
<<
_
naca
->
pftSize
;
htab_size_bytes
=
1UL
<<
naca
->
pftSize
;
pteg_count
=
htab_size_bytes
>>
7
;
/* For debug, make the HTAB 1/8 as big as it normally would be. */
...
...
@@ -113,41 +120,44 @@ htab_initialize(void)
htab_size_bytes
=
pteg_count
<<
7
;
}
_htab_data
->
htab_num_ptegs
=
pteg_count
;
_htab_data
->
htab_hash_mask
=
pteg_count
-
1
;
htab_data
.
htab_num_ptegs
=
pteg_count
;
htab_data
.
htab_hash_mask
=
pteg_count
-
1
;
if
(
naca
->
platform
==
PLATFORM_PSERIES
)
{
/* Find storage for the HPT. Must be contiguous in
* the absolute address space.
*/
table
=
lmb_alloc
(
htab_size_bytes
,
htab_size_bytes
);
if
(
!
table
)
panic
(
"ERROR, cannot find space for HPTE
\n
"
);
_htab_data
->
htab
=
(
HPTE
*
)
__a2v
(
table
);
if
(
!
table
)
{
ppc64_terminate_msg
(
0x20
,
"hpt space"
);
loop_forever
();
}
htab_data
.
htab
=
(
HPTE
*
)
__a2v
(
table
);
/* htab absolute addr + encoded htabsize */
RELOC
(
_SDR1
)
=
table
+
__ilog2
(
pteg_count
)
-
11
;
_SDR1
=
table
+
__ilog2
(
pteg_count
)
-
11
;
/* Initialize the HPT with no entries */
memset
((
void
*
)
table
,
0
,
htab_size_bytes
);
}
else
{
_htab_data
->
htab
=
NULL
;
RELOC
(
_SDR1
)
=
0
;
/* Using a hypervisor which owns the htab */
htab_data
.
htab
=
NULL
;
_SDR1
=
0
;
}
mode_rw
=
_PAGE_ACCESSED
|
_PAGE_COHERENT
|
PP_RWXX
;
mask
=
pteg_count
-
1
;
/* XXX we currently map kernel text rw, should fix this */
if
(
cpu_has_largepage
()
&&
_
naca
->
physicalMemorySize
>
256
*
MB
)
{
if
(
cpu_has_largepage
()
&&
naca
->
physicalMemorySize
>
256
*
MB
)
{
create_pte_mapping
((
unsigned
long
)
KERNELBASE
,
KERNELBASE
+
256
*
MB
,
mode_rw
,
mask
,
0
);
create_pte_mapping
((
unsigned
long
)
KERNELBASE
+
256
*
MB
,
KERNELBASE
+
(
_
naca
->
physicalMemorySize
),
KERNELBASE
+
(
naca
->
physicalMemorySize
),
mode_rw
,
mask
,
1
);
}
else
{
create_pte_mapping
((
unsigned
long
)
KERNELBASE
,
KERNELBASE
+
(
_
naca
->
physicalMemorySize
),
KERNELBASE
+
(
naca
->
physicalMemorySize
),
mode_rw
,
mask
,
0
);
}
}
...
...
@@ -300,7 +310,7 @@ int __hash_page(unsigned long ea, unsigned long access, unsigned long vsid,
hpteflags
=
(
pte_val
(
new_pte
)
&
0x1f8
)
|
newpp
;
/* XXX fix large pte flag */
slot
=
ppc_md
.
insert_hpte
(
hpte_group
,
vpn
,
prpn
,
0
,
slot
=
ppc_md
.
hpte_insert
(
hpte_group
,
vpn
,
prpn
,
0
,
hpteflags
,
0
,
0
);
/* Primary is full, try the secondary */
...
...
@@ -309,13 +319,13 @@ int __hash_page(unsigned long ea, unsigned long access, unsigned long vsid,
hpte_group
=
((
~
hash
&
htab_data
.
htab_hash_mask
)
*
HPTES_PER_GROUP
)
&
~
0x7UL
;
/* XXX fix large pte flag */
slot
=
ppc_md
.
insert_hpte
(
hpte_group
,
vpn
,
prpn
,
slot
=
ppc_md
.
hpte_insert
(
hpte_group
,
vpn
,
prpn
,
1
,
hpteflags
,
0
,
0
);
if
(
slot
==
-
1
)
{
if
(
mftb
()
&
0x1
)
hpte_group
=
((
hash
&
htab_data
.
htab_hash_mask
)
*
HPTES_PER_GROUP
)
&
~
0x7UL
;
ppc_md
.
remove_hpt
e
(
hpte_group
);
ppc_md
.
hpte_remov
e
(
hpte_group
);
goto
repeat
;
}
}
...
...
@@ -363,21 +373,20 @@ int hash_page(unsigned long ea, unsigned long access, unsigned long trap)
vsid
=
get_kernel_vsid
(
ea
);
break
;
case
IO_UNMAPPED_REGION_ID
:
udbg_printf
(
"EEH Error ea = 0x%lx
\n
"
,
ea
);
PPCDBG_ENTER_DEBUGGER
();
panic
(
"EEH Error ea = 0x%lx
\n
"
,
ea
);
break
;
/*
* Should only be hit if there is an access to MMIO space
* which is protected by EEH.
* Send the problem up to do_page_fault
*/
case
KERNEL_REGION_ID
:
/*
*
As htab_initialize is now, we shouldn't ever get here since
*
we're bolting the entire 0xC0... region.
*
Should never get here - entire 0xC0... region is bolted.
*
Send the problem up to do_page_fault
*/
udbg_printf
(
"Little faulted on kernel address 0x%lx
\n
"
,
ea
);
PPCDBG_ENTER_DEBUGGER
();
panic
(
"Little faulted on kernel address 0x%lx
\n
"
,
ea
);
break
;
default:
/* Not a valid range, send the problem up to do_page_fault */
/* Not a valid range
* Send the problem up to do_page_fault
*/
return
1
;
break
;
}
...
...
arch/ppc64/kernel/pSeries_htab.c
View file @
962a7e51
...
...
@@ -86,7 +86,7 @@ static inline void pSeries_unlock_hpte(HPTE *hptep)
static
spinlock_t
pSeries_tlbie_lock
=
SPIN_LOCK_UNLOCKED
;
static
long
pSeries_
insert_hpte
(
unsigned
long
hpte_group
,
unsigned
long
vpn
,
static
long
pSeries_
hpte_insert
(
unsigned
long
hpte_group
,
unsigned
long
vpn
,
unsigned
long
prpn
,
int
secondary
,
unsigned
long
hpteflags
,
int
bolted
,
int
large
)
{
...
...
@@ -144,7 +144,7 @@ static long pSeries_insert_hpte(unsigned long hpte_group, unsigned long vpn,
return
i
;
}
static
long
pSeries_
remove_hpt
e
(
unsigned
long
hpte_group
)
static
long
pSeries_
hpte_remov
e
(
unsigned
long
hpte_group
)
{
HPTE
*
hptep
;
Hpte_dword0
dw0
;
...
...
@@ -455,8 +455,8 @@ void hpte_init_pSeries(void)
ppc_md
.
hpte_invalidate
=
pSeries_hpte_invalidate
;
ppc_md
.
hpte_updatepp
=
pSeries_hpte_updatepp
;
ppc_md
.
hpte_updateboltedpp
=
pSeries_hpte_updateboltedpp
;
ppc_md
.
insert_hpte
=
pSeries_insert_hpte
;
ppc_md
.
remove_hpte
=
pSeries_remove_hpt
e
;
ppc_md
.
hpte_insert
=
pSeries_hpte_insert
;
ppc_md
.
hpte_remove
=
pSeries_hpte_remov
e
;
ppc_md
.
make_pte
=
pSeries_make_pte
;
/* Disable TLB batching on nighthawk */
...
...
arch/ppc64/kernel/pSeries_lpar.c
View file @
962a7e51
...
...
@@ -457,7 +457,7 @@ void pSeries_lpar_make_pte(HPTE *htab, unsigned long va, unsigned long pa,
*/
}
static
long
pSeries_lpar_
insert_hpte
(
unsigned
long
hpte_group
,
static
long
pSeries_lpar_
hpte_insert
(
unsigned
long
hpte_group
,
unsigned
long
vpn
,
unsigned
long
prpn
,
int
secondary
,
unsigned
long
hpteflags
,
int
bolted
,
int
large
)
...
...
@@ -522,7 +522,7 @@ static long pSeries_lpar_insert_hpte(unsigned long hpte_group,
static
spinlock_t
pSeries_lpar_tlbie_lock
=
SPIN_LOCK_UNLOCKED
;
static
long
pSeries_lpar_
remove_hpt
e
(
unsigned
long
hpte_group
)
static
long
pSeries_lpar_
hpte_remov
e
(
unsigned
long
hpte_group
)
{
unsigned
long
slot_offset
;
unsigned
long
lpar_rc
;
...
...
@@ -695,11 +695,11 @@ void pSeries_lpar_flush_hash_range(unsigned long context, unsigned long number,
void
pSeries_lpar_mm_init
(
void
)
{
ppc_md
.
hpte_invalidate
=
pSeries_lpar_hpte_invalidate
;
ppc_md
.
hpte_updatepp
=
pSeries_lpar_hpte_updatepp
;
ppc_md
.
hpte_invalidate
=
pSeries_lpar_hpte_invalidate
;
ppc_md
.
hpte_updatepp
=
pSeries_lpar_hpte_updatepp
;
ppc_md
.
hpte_updateboltedpp
=
pSeries_lpar_hpte_updateboltedpp
;
ppc_md
.
insert_hpte
=
pSeries_lpar_insert_hpte
;
ppc_md
.
remove_hpte
=
pSeries_lpar_remove_hpt
e
;
ppc_md
.
make_pte
=
pSeries_lpar_make_pte
;
ppc_md
.
hpte_insert
=
pSeries_lpar_hpte_insert
;
ppc_md
.
hpte_remove
=
pSeries_lpar_hpte_remov
e
;
ppc_md
.
make_pte
=
pSeries_lpar_make_pte
;
ppc_md
.
flush_hash_range
=
pSeries_lpar_flush_hash_range
;
}
arch/ppc64/kernel/udbg.c
View file @
962a7e51
...
...
@@ -116,8 +116,6 @@ udbg_puts(const char *s)
if
(
s
&&
*
s
!=
'\0'
)
{
while
((
c
=
*
s
++
)
!=
'\0'
)
ppc_md
.
udbg_putc
(
c
);
}
else
{
udbg_puts
(
"NULL"
);
}
}
else
{
printk
(
"%s"
,
s
);
...
...
@@ -135,8 +133,7 @@ udbg_write(const char *s, int n)
while
(
((
c
=
*
s
++
)
!=
'\0'
)
&&
(
remain
--
>
0
))
{
ppc_md
.
udbg_putc
(
c
);
}
}
else
udbg_puts
(
"NULL"
);
}
return
n
-
remain
;
}
...
...
include/asm-ppc64/machdep.h
View file @
962a7e51
...
...
@@ -40,14 +40,14 @@ struct machdep_calls {
int
large
);
void
(
*
hpte_updateboltedpp
)(
unsigned
long
newpp
,
unsigned
long
ea
);
long
(
*
insert_hpte
)(
unsigned
long
hpte_group
,
long
(
*
hpte_insert
)(
unsigned
long
hpte_group
,
unsigned
long
vpn
,
unsigned
long
prpn
,
int
secondary
,
unsigned
long
hpteflags
,
int
bolted
,
int
large
);
long
(
*
remove_hpt
e
)(
unsigned
long
hpte_group
);
long
(
*
hpte_remov
e
)(
unsigned
long
hpte_group
);
void
(
*
flush_hash_range
)(
unsigned
long
context
,
unsigned
long
number
,
int
local
);
...
...
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