1 /* 2 * (C) Copyright 2015 Google, Inc 3 * 4 * SPDX-License-Identifier: GPL-2.0 5 */ 6 7 #ifndef _ASM_ARCH_DDR_RK3188_H 8 #define _ASM_ARCH_DDR_RK3188_H 9 10 #include <asm/arch/ddr_rk3288.h> 11 12 /* 13 * RK3188 Memory scheduler register map. 14 */ 15 struct rk3188_msch { 16 u32 coreid; 17 u32 revisionid; 18 u32 ddrconf; 19 u32 ddrtiming; 20 u32 ddrmode; 21 u32 readlatency; 22 }; 23 check_member(rk3188_msch, readlatency, 0x0014); 24 25 #endif 26