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