blob: 8cec746ae9d218eb107567514fce90dd20e59046 [file] [log] [blame]
Kevin Hilmane38d92f2009-04-29 17:44:58 -07001/*
2 * Chip specific defines for DM646x SoC
3 *
4 * Author: Kevin Hilman, Deep Root Systems, LLC
5 *
6 * 2007 (c) Deep Root Systems, LLC. This file is licensed under
7 * the terms of the GNU General Public License version 2. This program
8 * is licensed "as is" without any warranty of any kind, whether express
9 * or implied.
10 */
11#ifndef __ASM_ARCH_DM646X_H
12#define __ASM_ARCH_DM646X_H
13
14#include <mach/hardware.h>
Kevin Hilmanac7b75b2009-05-07 06:19:40 -070015#include <mach/emac.h>
Chaithrika U S25acf552009-06-05 06:28:08 -040016#include <mach/asp.h>
Muralidharan Karicheri85609c12009-09-16 13:15:30 -040017#include <linux/i2c.h>
18#include <linux/videodev2.h>
Kevin Hilmanac7b75b2009-05-07 06:19:40 -070019
20#define DM646X_EMAC_BASE (0x01C80000)
21#define DM646X_EMAC_CNTRL_OFFSET (0x0000)
22#define DM646X_EMAC_CNTRL_MOD_OFFSET (0x1000)
23#define DM646X_EMAC_CNTRL_RAM_OFFSET (0x2000)
24#define DM646X_EMAC_MDIO_OFFSET (0x4000)
25#define DM646X_EMAC_CNTRL_RAM_SIZE (0x2000)
Kevin Hilmane38d92f2009-04-29 17:44:58 -070026
Hemant Pedanekar1c92a552009-07-09 19:43:20 +053027#define DM646X_ATA_REG_BASE (0x01C66000)
28
Kevin Hilmane38d92f2009-04-29 17:44:58 -070029void __init dm646x_init(void);
Hemant Pedanekar1c92a552009-07-09 19:43:20 +053030void __init dm646x_init_ide(void);
Chaithrika U S25acf552009-06-05 06:28:08 -040031void __init dm646x_init_mcasp0(struct snd_platform_data *pdata);
32void __init dm646x_init_mcasp1(struct snd_platform_data *pdata);
Kevin Hilmane38d92f2009-04-29 17:44:58 -070033
Muralidharan Karicheri85609c12009-09-16 13:15:30 -040034void dm646x_video_init(void);
35
36enum vpif_if_type {
37 VPIF_IF_BT656,
38 VPIF_IF_BT1120,
39 VPIF_IF_RAW_BAYER
40};
41
42struct vpif_interface {
43 enum vpif_if_type if_type;
44 unsigned hd_pol:1;
45 unsigned vd_pol:1;
46 unsigned fid_pol:1;
47};
48
49struct vpif_subdev_info {
50 const char *name;
51 struct i2c_board_info board_info;
52 u32 input;
53 u32 output;
54 unsigned can_route:1;
55 struct vpif_interface vpif_if;
56};
57
58struct vpif_display_config {
59 int (*set_clock)(int, int);
60 struct vpif_subdev_info *subdevinfo;
61 int subdev_count;
62 const char **output;
63 int output_count;
64 const char *card_name;
65};
66
67struct vpif_input {
68 struct v4l2_input input;
69 const char *subdev_name;
70};
71
72#define VPIF_CAPTURE_MAX_CHANNELS 2
73
74struct vpif_capture_chan_config {
75 const struct vpif_input *inputs;
76 int input_count;
77};
78
79struct vpif_capture_config {
80 int (*setup_input_channel_mode)(int);
81 int (*setup_input_path)(int, const char *);
82 struct vpif_capture_chan_config chan_config[VPIF_CAPTURE_MAX_CHANNELS];
83 struct vpif_subdev_info *subdev_info;
84 int subdev_count;
85 const char *card_name;
86};
87
88void dm646x_setup_vpif(struct vpif_display_config *,
89 struct vpif_capture_config *);
90
Kevin Hilmane38d92f2009-04-29 17:44:58 -070091#endif /* __ASM_ARCH_DM646X_H */