blob: a8702aca187a97176eac9c4b2795e1b9c2969872 [file] [log] [blame]
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -07001/*
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -07002 */
3
Hans Verkuil49965a82006-03-19 08:45:38 -03004#ifndef MSP3400_DRIVER_H
5#define MSP3400_DRIVER_H
Linus Torvalds1da177e2005-04-16 15:20:36 -07006
Mauro Carvalho Chehabd647f0b2015-11-13 19:40:07 -02007#include <media/drv-intf/msp3400.h>
Hans Verkuil76efd622008-11-24 18:16:46 -03008#include <media/v4l2-device.h>
Hans Verkuilebc3bba2010-05-24 10:01:58 -03009#include <media/v4l2-ctrls.h>
Mauro Carvalho Chehabfb493282016-01-28 08:51:01 -020010#include <media/v4l2-mc.h>
Hans Verkuil2474ed42006-03-19 12:35:57 -030011
Linus Torvalds1da177e2005-04-16 15:20:36 -070012/* ---------------------------------------------------------------------- */
13
Hans Verkuil53b0a1c2006-01-09 15:32:39 -020014/* This macro is allowed for *constants* only, gcc must calculate it
15 at compile time. Remember -- no floats in kernel mode */
16#define MSP_CARRIER(freq) ((int)((float)(freq / 18.432) * (1 << 24)))
17
18#define MSP_MODE_AM_DETECT 0
19#define MSP_MODE_FM_RADIO 2
20#define MSP_MODE_FM_TERRA 3
21#define MSP_MODE_FM_SAT 4
22#define MSP_MODE_FM_NICAM1 5
23#define MSP_MODE_FM_NICAM2 6
24#define MSP_MODE_AM_NICAM 7
25#define MSP_MODE_BTSC 8
26#define MSP_MODE_EXTERN 9
27
Hans Verkuil42772572006-03-19 06:48:51 -030028#define SCART_IN1 0
29#define SCART_IN2 1
30#define SCART_IN3 2
31#define SCART_IN4 3
32#define SCART_IN1_DA 4
33#define SCART_IN2_DA 5
34#define SCART_MONO 6
35#define SCART_MUTE 7
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37#define SCART_DSP_IN 0
38#define SCART1_OUT 1
39#define SCART2_OUT 2
40
Hans Verkuil53b0a1c2006-01-09 15:32:39 -020041#define OPMODE_AUTO -1
42#define OPMODE_MANUAL 0
43#define OPMODE_AUTODETECT 1 /* use autodetect (>= msp3410 only) */
44#define OPMODE_AUTOSELECT 2 /* use autodetect & autoselect (>= msp34xxG) */
45
46/* module parameters */
Mauro Carvalho Chehabf167cb4e2006-01-11 19:41:49 -020047extern int msp_debug;
Rusty Russell90ab5ee2012-01-13 09:32:20 +103048extern bool msp_once;
49extern bool msp_amsound;
Mauro Carvalho Chehabf167cb4e2006-01-11 19:41:49 -020050extern int msp_standard;
Rusty Russell90ab5ee2012-01-13 09:32:20 +103051extern bool msp_dolby;
Mauro Carvalho Chehabf167cb4e2006-01-11 19:41:49 -020052extern int msp_stereo_thresh;
Hans Verkuil53b0a1c2006-01-09 15:32:39 -020053
54struct msp_state {
Hans Verkuil76efd622008-11-24 18:16:46 -030055 struct v4l2_subdev sd;
Hans Verkuilebc3bba2010-05-24 10:01:58 -030056 struct v4l2_ctrl_handler hdl;
Hans Verkuil53b0a1c2006-01-09 15:32:39 -020057 int rev1, rev2;
Hans Verkuil74cab312007-04-27 12:31:26 -030058 int ident;
Hans Verkuil5af0c8f2006-01-09 18:21:37 -020059 u8 has_nicam;
60 u8 has_radio;
61 u8 has_headphones;
62 u8 has_ntsc_jp_d_k3;
Hans Verkuil0020d3e2006-03-30 19:50:34 -030063 u8 has_scart2;
64 u8 has_scart3;
Hans Verkuil5af0c8f2006-01-09 18:21:37 -020065 u8 has_scart4;
Hans Verkuil0020d3e2006-03-30 19:50:34 -030066 u8 has_scart2_out;
Hans Verkuil5af0c8f2006-01-09 18:21:37 -020067 u8 has_scart2_out_volume;
68 u8 has_i2s_conf;
69 u8 has_subwoofer;
70 u8 has_sound_processing;
71 u8 has_virtual_dolby_surround;
72 u8 has_dolby_pro_logic;
Hans Verkuilde98cda2006-10-01 17:56:32 -030073 u8 force_btsc;
Hans Verkuil53b0a1c2006-01-09 15:32:39 -020074
Hans Verkuil7560d7a2006-01-09 18:21:32 -020075 int radio;
Hans Verkuil53b0a1c2006-01-09 15:32:39 -020076 int opmode;
Hans Verkuil5af0c8f2006-01-09 18:21:37 -020077 int std;
Hans Verkuil53b0a1c2006-01-09 15:32:39 -020078 int mode;
Mauro Carvalho Chehab5d1ed982011-10-04 09:44:02 -030079 v4l2_std_id v4l2_std, detected_std;
Hans Verkuil53b0a1c2006-01-09 15:32:39 -020080 int nicam_on;
81 int acb;
82 int in_scart;
83 int i2s_mode;
84 int main, second; /* sound carrier */
85 int input;
Hans Verkuil5325b422009-04-02 11:26:22 -030086 u32 route_in;
87 u32 route_out;
Hans Verkuil53b0a1c2006-01-09 15:32:39 -020088
89 /* v4l2 */
90 int audmode;
91 int rxsubchans;
92
Hans Verkuilebc3bba2010-05-24 10:01:58 -030093 struct {
94 /* volume cluster */
95 struct v4l2_ctrl *volume;
96 struct v4l2_ctrl *muted;
97 };
98
Hans Verkuil3bbe5a82006-04-01 15:27:52 -030099 int scan_in_progress;
Hans Verkuil53b0a1c2006-01-09 15:32:39 -0200100
101 /* thread */
102 struct task_struct *kthread;
103 wait_queue_head_t wq;
Randy Dunlap0a115372006-06-28 15:05:11 -0300104 unsigned int restart:1;
105 unsigned int watch_stereo:1;
Mauro Carvalho Chehabfb493282016-01-28 08:51:01 -0200106
Arnd Bergmann24095e72016-02-02 13:47:58 -0200107#if IS_ENABLED(CONFIG_MEDIA_CONTROLLER)
Mauro Carvalho Chehabfb493282016-01-28 08:51:01 -0200108 struct media_pad pads[IF_AUD_DEC_PAD_NUM_PADS];
109#endif
Hans Verkuil53b0a1c2006-01-09 15:32:39 -0200110};
111
Hans Verkuil76efd622008-11-24 18:16:46 -0300112static inline struct msp_state *to_state(struct v4l2_subdev *sd)
113{
114 return container_of(sd, struct msp_state, sd);
115}
116
Hans Verkuilebc3bba2010-05-24 10:01:58 -0300117static inline struct msp_state *ctrl_to_state(struct v4l2_ctrl *ctrl)
118{
119 return container_of(ctrl->handler, struct msp_state, hdl);
120}
121
Hans Verkuil53b0a1c2006-01-09 15:32:39 -0200122/* msp3400-driver.c */
123int msp_write_dem(struct i2c_client *client, int addr, int val);
124int msp_write_dsp(struct i2c_client *client, int addr, int val);
125int msp_read_dem(struct i2c_client *client, int addr);
126int msp_read_dsp(struct i2c_client *client, int addr);
127int msp_reset(struct i2c_client *client);
128void msp_set_scart(struct i2c_client *client, int in, int out);
Hans Verkuilebc3bba2010-05-24 10:01:58 -0300129void msp_update_volume(struct msp_state *state);
Hans Verkuil53b0a1c2006-01-09 15:32:39 -0200130int msp_sleep(struct msp_state *state, int timeout);
131
132/* msp3400-kthreads.c */
Hans Verkuil5af0c8f2006-01-09 18:21:37 -0200133const char *msp_standard_std_name(int std);
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200134void msp_set_audmode(struct i2c_client *client);
Hans Verkuilde533cc2006-03-19 08:21:56 -0300135int msp_detect_stereo(struct i2c_client *client);
Hans Verkuil53b0a1c2006-01-09 15:32:39 -0200136int msp3400c_thread(void *data);
137int msp3410d_thread(void *data);
138int msp34xxg_thread(void *data);
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200139void msp3400c_set_mode(struct i2c_client *client, int mode);
140void msp3400c_set_carrier(struct i2c_client *client, int cdo1, int cdo2);
Hans Verkuil53b0a1c2006-01-09 15:32:39 -0200141
Hans Verkuil49965a82006-03-19 08:45:38 -0300142#endif /* MSP3400_DRIVER_H */