blob: 9167a5754403f3418214db2833ba5be674c1ac46 [file] [log] [blame]
Wolfgang Denk7629f1c2009-06-14 20:58:47 +02001/*
2 * include/asm-ppc/mpc512x.h
3 *
4 * Prototypes, etc. for the Freescale MPC512x embedded cpu chips
5 *
6 * 2009 (C) Wolfgang Denk, DENX Software Engineering, wd@denx.de.
7 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02008 * SPDX-License-Identifier: GPL-2.0+
Wolfgang Denk7629f1c2009-06-14 20:58:47 +02009 */
10#ifndef __ASMPPC_MPC512X_H
11#define __ASMPPC_MPC512X_H
12
13/*
14 * macros for manipulating CSx_START/STOP
15 */
16#define CSAW_START(start) ((start) & 0xFFFF0000)
17#define CSAW_STOP(start, size) (((start) + (size) - 1) >> 16)
18
19/*
20 * Inlines
21 */
22
23/*
24 * According to MPC5121e RM, configuring local access windows should
25 * be followed by a dummy read of the config register that was
26 * modified last and an isync.
27 */
28static inline void sync_law(volatile void *addr)
29{
30 in_be32(addr);
31 __asm__ __volatile__ ("isync");
32}
33
34/*
35 * Prototypes
36 */
Wolfgang Denkda01f532009-10-04 22:56:08 +020037extern long int fixed_sdram(ddr512x_config_t *mddrc_config,
38 u32 *dram_init_seq, int seq_sz);
Wolfgang Denk7629f1c2009-06-14 20:58:47 +020039extern int mpc5121_diu_init(void);
40extern void ide_set_reset(int idereset);
41
42#endif /* __ASMPPC_MPC512X_H */