SPDX: Convert all of our single license tags to Linux Kernel style
[platform/kernel/u-boot.git] / arch / arm / include / asm / arch-tegra / apb_misc.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (c) 2012 The Chromium OS Authors.
4  */
5
6 #ifndef _GP_PADCTRL_H_
7 #define _GP_PADCTRL_H_
8
9 /* APB_MISC_PP registers */
10 struct apb_misc_pp_ctlr {
11         u32     reserved0[2];
12         u32     strapping_opt_a;/* 0x08: APB_MISC_PP_STRAPPING_OPT_A */
13         u32     reserved1[6];   /* 0x0c .. 0x20 */
14         u32     cfg_ctl;        /* 0x24 */
15 };
16
17 /* bit fields definitions for APB_MISC_PP_STRAPPING_OPT_A register */
18 #define RAM_CODE_SHIFT          4
19 #define RAM_CODE_MASK           (0xf << RAM_CODE_SHIFT)
20
21 #endif