Path: blob/master/arch/arm/mach-davinci/include/mach/aemif.h
17633 views
/*1* TI DaVinci AEMIF support2*3* Copyright 2010 (C) Texas Instruments, Inc. http://www.ti.com/4*5* This file is licensed under the terms of the GNU General Public License6* version 2. This program is licensed "as is" without any warranty of any7* kind, whether express or implied.8*/9#ifndef _MACH_DAVINCI_AEMIF_H10#define _MACH_DAVINCI_AEMIF_H1112#define NRCSR_OFFSET 0x0013#define AWCCR_OFFSET 0x0414#define A1CR_OFFSET 0x101516#define ACR_ASIZE_MASK 0x317#define ACR_EW_MASK BIT(30)18#define ACR_SS_MASK BIT(31)1920/* All timings in nanoseconds */21struct davinci_aemif_timing {22u8 wsetup;23u8 wstrobe;24u8 whold;2526u8 rsetup;27u8 rstrobe;28u8 rhold;2930u8 ta;31};3233int davinci_aemif_setup_timing(struct davinci_aemif_timing *t,34void __iomem *base, unsigned cs);35#endif363738