blob: 88154712ff00c90edc697a19f895ce704631184f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* 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
|