Skip to content

Commit

Permalink
sh: rework nommu for generic cache.c use.
Browse files Browse the repository at this point in the history
This does a bit of reorganizing for allowing nommu to use the new
and generic cache.c, no functional changes.

Signed-off-by: Paul Mundt <lethal@linux-sh.org>
  • Loading branch information
Paul Mundt committed Aug 15, 2009
1 parent cbbe2f6 commit dde5e3f
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 18 deletions.
2 changes: 2 additions & 0 deletions arch/sh/include/asm/cacheflush.h
Original file line number Diff line number Diff line change
Expand Up @@ -76,5 +76,7 @@ void kmap_coherent_init(void);
void *kmap_coherent(struct page *page, unsigned long addr);
void kunmap_coherent(void);

#define PG_dcache_dirty PG_arch_1

#endif /* __KERNEL__ */
#endif /* __ASM_SH_CACHEFLUSH_H */
7 changes: 1 addition & 6 deletions arch/sh/include/asm/page.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,18 +68,13 @@ extern void clear_user_page(void *to, unsigned long address, struct page *page);
extern void copy_user_page(void *to, void *from, unsigned long address,
struct page *page);

#elif defined(CONFIG_MMU)
#else
extern void copy_user_highpage(struct page *to, struct page *from,
unsigned long vaddr, struct vm_area_struct *vma);
#define __HAVE_ARCH_COPY_USER_HIGHPAGE
extern void clear_user_highpage(struct page *page, unsigned long vaddr);
#define clear_user_highpage clear_user_highpage

#else

#define clear_user_page(page, vaddr, pg) clear_page(page)
#define copy_user_page(to, from, vaddr, pg) copy_page(to, from)

#endif

/*
Expand Down
2 changes: 0 additions & 2 deletions arch/sh/include/cpu-sh3/cpu/cacheflush.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@
* SH4. Unlike the SH4 this is a unified cache so we need to do some work
* in mmap when 'exec'ing a new binary
*/
#define PG_dcache_dirty PG_arch_1

void flush_cache_all(void);
void flush_cache_mm(struct mm_struct *mm);
#define flush_cache_dup_mm(mm) flush_cache_mm(mm)
Expand Down
2 changes: 0 additions & 2 deletions arch/sh/include/cpu-sh4/cpu/cacheflush.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,4 @@ void flush_icache_user_range(struct vm_area_struct *vma, struct page *page,
/* Initialization of P3 area for copy_user_page */
void p3_cache_init(void);

#define PG_dcache_dirty PG_arch_1

#endif /* __ASM_CPU_SH4_CACHEFLUSH_H */
2 changes: 0 additions & 2 deletions arch/sh/kernel/cpu/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -268,11 +268,9 @@ asmlinkage void __init sh_cpu_init(void)
cache_init();

if (raw_smp_processor_id() == 0) {
#ifdef CONFIG_MMU
shm_align_mask = max_t(unsigned long,
current_cpu_data.dcache.way_size - 1,
PAGE_SIZE - 1);
#endif

/* Boot CPU sets the cache shape */
detect_cache_shape();
Expand Down
2 changes: 1 addition & 1 deletion arch/sh/mm/mmap.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
#include <asm/page.h>
#include <asm/processor.h>

#ifdef CONFIG_MMU
unsigned long shm_align_mask = PAGE_SIZE - 1; /* Sane caches */
EXPORT_SYMBOL(shm_align_mask);

#ifdef CONFIG_MMU
/*
* To avoid cache aliases, we map the shared page with same color.
*/
Expand Down
5 changes: 0 additions & 5 deletions arch/sh/mm/tlb-nommu.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,6 @@ void __update_tlb(struct vm_area_struct *vma, unsigned long address, pte_t pte)
{
}

void __update_cache(struct vm_area_struct *vma,
unsigned long address, pte_t pte)
{
}

void __init kmap_coherent_init(void)
{
}
Expand Down

0 comments on commit dde5e3f

Please sign in to comment.