blob: fe4aa1654b2148d91ce919aa8c492f7f8f3f7c36 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* $Id$ */
/* Copyright 2000 AG Electronics Ltd. */
/* This code is distributed without warranty under the GPL v2 (see COPYING) */
#ifndef _PPC_H
#define _PPC_H
#define BIG_ENDIAN
#define RODATA __attribute__ ((__section__ (".rodata")))
/* Do CPU specific setup, with optional icache */
void ppc_setup_cpu(int icache);
void ppc_enable_dcache(void);
void ppc_disable_dcache(void);
void ppc_enable_mmu(void);
/* Describe which sort of ppc CPU I am */
void ppc_identify(void);
#endif
|