blob: a5311c9bb975dba64869c3117fcde2934c851c61 [file] [log] [blame]
Caesar Wangb4003742016-10-12 08:10:12 +08001/*
2 * Copyright (c) 2016, ARM Limited and Contributors. All rights reserved.
3 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Caesar Wangb4003742016-10-12 08:10:12 +08005 */
6
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +00007#ifndef M0_PARAM_H
8#define M0_PARAM_H
Caesar Wangb4003742016-10-12 08:10:12 +08009
Xing Zheng93280b72016-10-26 21:25:26 +080010#define PARAM_ADDR 0xc0
11
12#define PARAM_M0_FUNC 0x00
13#define PARAM_DRAM_FREQ 0x04
14#define PARAM_DPLL_CON0 0x08
15#define PARAM_DPLL_CON1 0x0c
16#define PARAM_DPLL_CON2 0x10
17#define PARAM_DPLL_CON3 0x14
18#define PARAM_DPLL_CON4 0x18
19#define PARAM_DPLL_CON5 0x1c
20#define PARAM_FREQ_SELECT 0x20
21#define PARAM_M0_DONE 0x24
22#define PARAM_M0_SIZE 0x28
23#define M0_DONE_FLAG 0xf59ec39a
Caesar Wangb4003742016-10-12 08:10:12 +080024
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +000025#endif /* M0_PARAM_H */