Subject: Re: CVS commit: src/sys/arch/evbarm/smdk2xx0
To: None <bsh@netbsd.org>
From: Jason Thorpe <thorpej@wasabisystems.com>
List: source-changes
Date: 05/12/2003 22:24:02
On Monday, May 12, 2003, at 09:20 PM, Hiroyuki Bessho wrote:
> Module Name: src
> Committed By: bsh
> Date: Tue May 13 04:20:39 UTC 2003
>
> Modified Files:
> src/sys/arch/evbarm/smdk2xx0: smdk2800_start.S
>
> Log Message:
> enable the domain 15 during bootstrap, as new pmap_map_section() use
> it.
This shouldn't be necessary, right? Won't this code in initarm() do
what is needed?
cpu_domains((DOMAIN_CLIENT << (PMAP_DOMAIN_KERNEL*2))
|DOMAIN_CLIENT);
setttb(kernel_l1pt.pv_pa);
cpu_tlb_flushID();
cpu_domains(DOMAIN_CLIENT << (PMAP_DOMAIN_KERNEL*2));
-- Jason R. Thorpe <thorpej@wasabisystems.com>