mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 17:51:43 +00:00
f2a4c59df6
This patch adds following changes:- 1) add sub device configuration data for TVP5146 used by vpfe capture 2) registers platform devices for vpfe_capture, isif and vpss 3) defines hardware resources for the devices listed under 2) 4) defines clock aliase for isif driver 5) adding setup_pinmux() for isif Signed-off-by: Murali Karicheri <m-karicheri2@ti.com> Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
42 lines
1.4 KiB
C
42 lines
1.4 KiB
C
/*
|
|
* Copyright (C) 2009 Texas Instruments Incorporated
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License as
|
|
* published by the Free Software Foundation version 2.
|
|
*
|
|
* This program is distributed "as is" WITHOUT ANY WARRANTY of any
|
|
* kind, whether express or implied; without even the implied warranty
|
|
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*/
|
|
#ifndef __ASM_ARCH_DM365_H
|
|
#define __ASM_ARCH_DM665_H
|
|
|
|
#include <linux/platform_device.h>
|
|
#include <mach/hardware.h>
|
|
#include <mach/emac.h>
|
|
#include <mach/asp.h>
|
|
#include <mach/keyscan.h>
|
|
#include <media/davinci/vpfe_capture.h>
|
|
|
|
#define DM365_EMAC_BASE (0x01D07000)
|
|
#define DM365_EMAC_CNTRL_OFFSET (0x0000)
|
|
#define DM365_EMAC_CNTRL_MOD_OFFSET (0x3000)
|
|
#define DM365_EMAC_CNTRL_RAM_OFFSET (0x1000)
|
|
#define DM365_EMAC_MDIO_OFFSET (0x4000)
|
|
#define DM365_EMAC_CNTRL_RAM_SIZE (0x2000)
|
|
|
|
/* Base of key scan register bank */
|
|
#define DM365_KEYSCAN_BASE (0x01C69400)
|
|
|
|
#define DM365_RTC_BASE (0x01C69000)
|
|
|
|
void __init dm365_init(void);
|
|
void __init dm365_init_asp(struct snd_platform_data *pdata);
|
|
void __init dm365_init_ks(struct davinci_ks_platform_data *pdata);
|
|
void __init dm365_init_rtc(void);
|
|
|
|
void dm365_set_vpfe_config(struct vpfe_config *cfg);
|
|
#endif /* __ASM_ARCH_DM365_H */
|