Path: blob/master/arch/arm/mach-davinci/include/mach/dm644x.h
17687 views
/*1* This file contains the processor specific definitions2* of the TI DM644x.3*4* Copyright (C) 2008 Texas Instruments.5*6* This program is free software; you can redistribute it and/or modify7* it under the terms of the GNU General Public License as published by8* the Free Software Foundation; either version 2 of the License, or9* (at your option) any later version.10*11* This program is distributed in the hope that it will be useful,12* but WITHOUT ANY WARRANTY; without even the implied warranty of13* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the14* GNU General Public License for more details.15*16* You should have received a copy of the GNU General Public License17* along with this program; if not, write to the Free Software18* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA19*20*/21#ifndef __ASM_ARCH_DM644X_H22#define __ASM_ARCH_DM644X_H2324#include <linux/davinci_emac.h>25#include <mach/hardware.h>26#include <mach/asp.h>27#include <media/davinci/vpfe_capture.h>2829#define DM644X_EMAC_BASE (0x01C80000)30#define DM644X_EMAC_MDIO_BASE (DM644X_EMAC_BASE + 0x4000)31#define DM644X_EMAC_CNTRL_OFFSET (0x0000)32#define DM644X_EMAC_CNTRL_MOD_OFFSET (0x1000)33#define DM644X_EMAC_CNTRL_RAM_OFFSET (0x2000)34#define DM644X_EMAC_CNTRL_RAM_SIZE (0x2000)3536#define DM644X_ASYNC_EMIF_CONTROL_BASE 0x01E0000037#define DM644X_ASYNC_EMIF_DATA_CE0_BASE 0x0200000038#define DM644X_ASYNC_EMIF_DATA_CE1_BASE 0x0400000039#define DM644X_ASYNC_EMIF_DATA_CE2_BASE 0x0600000040#define DM644X_ASYNC_EMIF_DATA_CE3_BASE 0x080000004142void __init dm644x_init(void);43void __init dm644x_init_asp(struct snd_platform_data *pdata);44void dm644x_set_vpfe_config(struct vpfe_config *cfg);4546#endif /* __ASM_ARCH_DM644X_H */474849