blob: 2c69a60de63ff060c75895d288d878b3a1b3d8e8 [file] [log] [blame]
wdenk42d1f032003-10-15 23:53:47 +00001/*
Andy Fleming61a21e92007-08-14 01:34:21 -05002 * Copyright 2004, 2007 Freescale Semiconductor.
wdenk42d1f032003-10-15 23:53:47 +00003 * Copyright(c) 2003 Motorola Inc.
wdenk42d1f032003-10-15 23:53:47 +00004 */
5
6#ifndef __MPC85xx_H__
7#define __MPC85xx_H__
8
wdenk42d1f032003-10-15 23:53:47 +00009#if defined(CONFIG_E500)
10#include <e500.h>
11#endif
12
wdenk0ac6f8b2004-07-09 23:27:13 +000013/*
14 * SCCR - System Clock Control Register, 9-8
wdenk42d1f032003-10-15 23:53:47 +000015 */
wdenk0ac6f8b2004-07-09 23:27:13 +000016#define SCCR_CLPD 0x00000004 /* CPM Low Power Disable */
17#define SCCR_DFBRG_MSK 0x00000003 /* Division by BRGCLK Mask */
wdenk42d1f032003-10-15 23:53:47 +000018#define SCCR_DFBRG_SHIFT 0
19
wdenk0ac6f8b2004-07-09 23:27:13 +000020#define SCCR_DFBRG00 0x00000000 /* BRGCLK division by 4 */
21#define SCCR_DFBRG01 0x00000001 /* BRGCLK div by 16 (normal) */
22#define SCCR_DFBRG10 0x00000002 /* BRGCLK division by 64 */
23#define SCCR_DFBRG11 0x00000003 /* BRGCLK division by 256 */
wdenk42d1f032003-10-15 23:53:47 +000024
Timur Tabie46fedf2011-08-04 18:03:41 -050025/*
26 * Define default values for some CCSR macros to make header files cleaner*
27 *
28 * To completely disable CCSR relocation in a board header file, define
29 * CONFIG_SYS_CCSR_DO_NOT_RELOCATE. This will force CONFIG_SYS_CCSRBAR_PHYS
30 * to a value that is the same as CONFIG_SYS_CCSRBAR.
31 */
32
33#ifdef CONFIG_SYS_CCSRBAR_PHYS
34#error "Do not define CONFIG_SYS_CCSRBAR_PHYS directly. Use \
35CONFIG_SYS_CCSRBAR_PHYS_LOW and/or CONFIG_SYS_CCSRBAR_PHYS_HIGH instead."
36#endif
37
38#ifdef CONFIG_SYS_CCSR_DO_NOT_RELOCATE
39#undef CONFIG_SYS_CCSRBAR_PHYS_HIGH
40#undef CONFIG_SYS_CCSRBAR_PHYS_LOW
41#define CONFIG_SYS_CCSRBAR_PHYS_HIGH 0
42#endif
43
44#ifndef CONFIG_SYS_CCSRBAR
Wolfgang Denk0cf207e2021-09-27 17:42:39 +020045#define CONFIG_SYS_CCSRBAR CONFIG_SYS_CCSRBAR_DEFAULT
Timur Tabie46fedf2011-08-04 18:03:41 -050046#endif
47
48#ifndef CONFIG_SYS_CCSRBAR_PHYS_HIGH
49#ifdef CONFIG_PHYS_64BIT
50#define CONFIG_SYS_CCSRBAR_PHYS_HIGH 0xf
51#else
52#define CONFIG_SYS_CCSRBAR_PHYS_HIGH 0
53#endif
54#endif
55
56#ifndef CONFIG_SYS_CCSRBAR_PHYS_LOW
Wolfgang Denk0cf207e2021-09-27 17:42:39 +020057#define CONFIG_SYS_CCSRBAR_PHYS_LOW CONFIG_SYS_CCSRBAR_DEFAULT
Timur Tabie46fedf2011-08-04 18:03:41 -050058#endif
59
60#define CONFIG_SYS_CCSRBAR_PHYS ((CONFIG_SYS_CCSRBAR_PHYS_HIGH * 1ull) << 32 | \
61 CONFIG_SYS_CCSRBAR_PHYS_LOW)
62
wdenk42d1f032003-10-15 23:53:47 +000063#endif /* __MPC85xx_H__ */