Path: blob/master/arch/arm/mach-davinci/include/mach/dm355.h
17633 views
/*1* Chip specific defines for DM355 SoC2*3* Author: Kevin Hilman, Deep Root Systems, LLC4*5* 2007 (c) Deep Root Systems, LLC. This file is licensed under6* the terms of the GNU General Public License version 2. This program7* is licensed "as is" without any warranty of any kind, whether express8* or implied.9*/10#ifndef __ASM_ARCH_DM355_H11#define __ASM_ARCH_DM355_H1213#include <mach/hardware.h>14#include <mach/asp.h>15#include <media/davinci/vpfe_capture.h>1617#define DM355_ASYNC_EMIF_CONTROL_BASE 0x01E1000018#define DM355_ASYNC_EMIF_DATA_CE0_BASE 0x020000001920#define ASP1_TX_EVT_EN 121#define ASP1_RX_EVT_EN 22223struct spi_board_info;2425void __init dm355_init(void);26void dm355_init_spi0(unsigned chipselect_mask,27struct spi_board_info *info, unsigned len);28void __init dm355_init_asp1(u32 evt_enable, struct snd_platform_data *pdata);29void dm355_set_vpfe_config(struct vpfe_config *cfg);3031#endif /* __ASM_ARCH_DM355_H */323334