]> Git Repo - u-boot.git/blame - include/mpc85xx.h
rockchip: rk3588-edgeble-neu6: Enable FIT checksum validation
[u-boot.git] / include / mpc85xx.h
CommitLineData
42d1f039 1/*
61a21e98 2 * Copyright 2004, 2007 Freescale Semiconductor.
42d1f039 3 * Copyright(c) 2003 Motorola Inc.
42d1f039
WD
4 */
5
6#ifndef __MPC85xx_H__
7#define __MPC85xx_H__
8
42d1f039
WD
9#if defined(CONFIG_E500)
10#include <e500.h>
11#endif
12
0ac6f8b7
WD
13/*
14 * SCCR - System Clock Control Register, 9-8
42d1f039 15 */
0ac6f8b7
WD
16#define SCCR_CLPD 0x00000004 /* CPM Low Power Disable */
17#define SCCR_DFBRG_MSK 0x00000003 /* Division by BRGCLK Mask */
42d1f039
WD
18#define SCCR_DFBRG_SHIFT 0
19
0ac6f8b7
WD
20#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 */
42d1f039 24
e46fedfe
TT
25/*
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
65cc0e2a
TR
29 * CONFIG_SPL_SYS_CCSR_DO_NOT_RELOCATE. This will force CFG_SYS_CCSRBAR_PHYS
30 * to a value that is the same as CFG_SYS_CCSRBAR.
e46fedfe
TT
31 */
32
65cc0e2a
TR
33#ifdef CFG_SYS_CCSRBAR_PHYS
34#error "Do not define CFG_SYS_CCSRBAR_PHYS directly. Use \
35CFG_SYS_CCSRBAR_PHYS_LOW and/or CFG_SYS_CCSRBAR_PHYS_HIGH instead."
e46fedfe
TT
36#endif
37
6074a536 38#if CONFIG_IS_ENABLED(SYS_CCSR_DO_NOT_RELOCATE)
65cc0e2a
TR
39#undef CFG_SYS_CCSRBAR_PHYS_HIGH
40#undef CFG_SYS_CCSRBAR_PHYS_LOW
41#define CFG_SYS_CCSRBAR_PHYS_HIGH 0
e46fedfe
TT
42#endif
43
65cc0e2a
TR
44#ifndef CFG_SYS_CCSRBAR
45#define CFG_SYS_CCSRBAR CONFIG_SYS_CCSRBAR_DEFAULT
e46fedfe
TT
46#endif
47
65cc0e2a 48#ifndef CFG_SYS_CCSRBAR_PHYS_HIGH
e46fedfe 49#ifdef CONFIG_PHYS_64BIT
65cc0e2a 50#define CFG_SYS_CCSRBAR_PHYS_HIGH 0xf
e46fedfe 51#else
65cc0e2a 52#define CFG_SYS_CCSRBAR_PHYS_HIGH 0
e46fedfe
TT
53#endif
54#endif
55
65cc0e2a
TR
56#ifndef CFG_SYS_CCSRBAR_PHYS_LOW
57#define CFG_SYS_CCSRBAR_PHYS_LOW CONFIG_SYS_CCSRBAR_DEFAULT
e46fedfe
TT
58#endif
59
65cc0e2a
TR
60#define CFG_SYS_CCSRBAR_PHYS ((CFG_SYS_CCSRBAR_PHYS_HIGH * 1ull) << 32 | \
61 CFG_SYS_CCSRBAR_PHYS_LOW)
e46fedfe 62
42d1f039 63#endif /* __MPC85xx_H__ */
This page took 0.638234 seconds and 4 git commands to generate.