diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2018-10-28 06:16:10 +0100 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2018-10-28 06:16:10 +0100 |
commit | b715c39bfa1e2169f450f719ba8a7643c7b39b68 (patch) | |
tree | dc5becbf9c6826e8e17b34fe84723630e8410ad5 /sys/src/9/bcm/fns.h | |
parent | 0fc2adb43dc8be67b6eca49e3e28339367a01246 (diff) |
bcm: simplify reboot code
- synchronize rebootcode installation
- handle the 1MB identity map in mmu.c (mmuinit1())
- do not overlap CONFADDR with rebootcode, the non boot
processors are parked there.
- make REBOOTADDR physical address
Diffstat (limited to 'sys/src/9/bcm/fns.h')
-rw-r--r-- | sys/src/9/bcm/fns.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/9/bcm/fns.h b/sys/src/9/bcm/fns.h index eb9c09eb5..56ce4085d 100644 --- a/sys/src/9/bcm/fns.h +++ b/sys/src/9/bcm/fns.h @@ -66,7 +66,7 @@ extern int isaconfig(char*, int, ISAConf*); extern void l2cacheuwbinv(void); extern void links(void); extern void mmuinit(void*); -extern void mmuinit1(void); +extern void mmuinit1(int); extern void mmuinvalidate(void); extern void mmuinvalidateaddr(u32int); extern uintptr mmukmap(uintptr, uintptr, usize); |