blob: 6ba10974b6d2d86b06f1a2fb697bc1d56bf106c6 [file] [log] [blame]
Simon Glass76135792017-05-17 08:23:05 -06001/*
2 * Ugly header containing required header files. This could be adjusted
3 * so that including asm/arch/hardware includes the correct file.
4 *
5 * (C) Copyright 2000-2009
6 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
7 *
8 * SPDX-License-Identifier: GPL-2.0+
9 */
10
11#ifndef __ASM_PPC_H
12#define __ASM_PPC_H
13
14#ifndef __ASSEMBLY__
15
Christophe Leroy069fa832017-07-06 10:23:22 +020016#if defined(CONFIG_8xx)
17#include <asm/8xx_immap.h>
Christophe Leroy069fa832017-07-06 10:23:22 +020018#endif
Simon Glass76135792017-05-17 08:23:05 -060019#ifdef CONFIG_MPC86xx
20#include <mpc86xx.h>
21#include <asm/immap_86xx.h>
22#endif
23#ifdef CONFIG_MPC85xx
24#include <mpc85xx.h>
25#include <asm/immap_85xx.h>
26#endif
27#ifdef CONFIG_MPC83xx
28#include <mpc83xx.h>
29#include <asm/immap_83xx.h>
30#endif
Simon Glass76135792017-05-17 08:23:05 -060031#ifdef CONFIG_SOC_DA8XX
32#include <asm/arch/hardware.h>
33#endif
34#ifdef CONFIG_FSL_LSCH3
35#include <asm/arch/immap_lsch3.h>
36#endif
37#ifdef CONFIG_FSL_LSCH2
38#include <asm/arch/immap_lsch2.h>
39#endif
40
Christophe Leroy9b021ae2017-07-13 15:10:02 +020041#include <asm/processor.h>
42
Christophe Leroy9b021ae2017-07-13 15:10:02 +020043static inline uint get_immr(uint mask)
44{
45 uint immr = mfspr(SPRN_IMMR);
46
47 return mask ? (immr & mask) : immr;
48}
Christophe Leroyedd4ebe2018-03-16 17:20:37 +010049
Christophe Leroy3d97f8e2017-07-13 15:10:06 +020050static inline uint get_pvr(void)
51{
52 return mfspr(PVR);
53}
54
55static inline uint get_svr(void)
56{
57 return mfspr(SVR);
58}
Simon Glass243182c2017-05-17 08:23:06 -060059
Heiko Schocher20280122017-06-27 16:49:14 +020060#if defined(CONFIG_MPC85xx) || \
Simon Glass243182c2017-05-17 08:23:06 -060061 defined(CONFIG_MPC86xx) || \
62 defined(CONFIG_MPC83xx)
63unsigned char in8(unsigned int);
64void out8(unsigned int, unsigned char);
65unsigned short in16(unsigned int);
66unsigned short in16r(unsigned int);
67void out16(unsigned int, unsigned short value);
68void out16r(unsigned int, unsigned short value);
69unsigned long in32(unsigned int);
70unsigned long in32r(unsigned int);
71void out32(unsigned int, unsigned long value);
72void out32r(unsigned int, unsigned long value);
73void ppcDcbf(unsigned long value);
74void ppcDcbi(unsigned long value);
75void ppcSync(void);
76void ppcDcbz(unsigned long value);
77#endif
78#if defined(CONFIG_MPC83xx)
79void ppcDWload(unsigned int *addr, unsigned int *ret);
80void ppcDWstore(unsigned int *addr, unsigned int *value);
81void disable_addr_trans(void);
82void enable_addr_trans(void);
83#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
84void ddr_enable_ecc(unsigned int dram_size);
85#endif
86#endif
87
Simon Glass243182c2017-05-17 08:23:06 -060088#if defined(CONFIG_MPC85xx)
89typedef MPC85xx_SYS_INFO sys_info_t;
90void get_sys_info(sys_info_t *);
91void ft_fixup_cpu(void *, u64);
92void ft_fixup_num_cores(void *);
93#endif
94#if defined(CONFIG_MPC86xx)
95ulong get_bus_freq(ulong);
96typedef MPC86xx_SYS_INFO sys_info_t;
97void get_sys_info(sys_info_t *);
98static inline ulong get_ddr_freq(ulong dummy)
99{
100 return get_bus_freq(dummy);
101}
102#else
103ulong get_ddr_freq(ulong);
104#endif
105
Christophe Leroybed40202017-07-13 15:09:52 +0200106static inline unsigned long get_msr(void)
107{
108 unsigned long msr;
109
110 asm volatile ("mfmsr %0" : "=r" (msr) : );
111
112 return msr;
113}
114
115static inline void set_msr(unsigned long msr)
116{
117 asm volatile ("mtmsr %0" : : "r" (msr));
118}
119
Christophe Leroy31f6e932017-07-13 15:09:54 +0200120#ifdef CONFIG_CMD_REGINFO
121void print_reginfo(void);
122#endif
123
Tom Rinice103982017-08-13 22:44:37 -0400124void interrupt_init_cpu(unsigned *);
Christophe Leroy4a4750b2017-07-13 15:10:08 +0200125void timer_interrupt_cpu(struct pt_regs *);
126unsigned long search_exception_table(unsigned long addr);
127
Simon Glass76135792017-05-17 08:23:05 -0600128#endif /* !__ASSEMBLY__ */
129
Simon Glass243182c2017-05-17 08:23:06 -0600130#ifdef CONFIG_PPC
131/*
132 * Has to be included outside of the #ifndef __ASSEMBLY__ section.
133 * Otherwise might lead to compilation errors in assembler files.
134 */
135#include <asm/cache.h>
136#endif
137
Simon Glass76135792017-05-17 08:23:05 -0600138#endif