diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-04-17 20:42:58 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-04-24 13:09:42 -0400 |
commit | 2ba890ec0849b222a6dabb5192ccd8fd1696d6d3 (patch) | |
tree | 37841a986111e96fc6a4fa25e95bc2ebc13752b7 /drivers/media/video | |
parent | 89b329ef9d7cc16ed46fc991b21b2d45e7bf452c (diff) |
V4L/DVB (7611): em28xx: Move registers to a separate file
em28xx.h contains lots of different stuff inside. The better is to break it on
some files.
This patch removes the register names, moving them to a separate file.
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video')
-rw-r--r-- | drivers/media/video/em28xx/em28xx-cards.c | 2 | ||||
-rw-r--r-- | drivers/media/video/em28xx/em28xx-reg.h | 88 | ||||
-rw-r--r-- | drivers/media/video/em28xx/em28xx.h | 66 |
3 files changed, 90 insertions, 66 deletions
diff --git a/drivers/media/video/em28xx/em28xx-cards.c b/drivers/media/video/em28xx/em28xx-cards.c index 0c71e599c140..0cf61a502203 100644 --- a/drivers/media/video/em28xx/em28xx-cards.c +++ b/drivers/media/video/em28xx/em28xx-cards.c | |||
@@ -531,7 +531,7 @@ void em28xx_pre_card_setup(struct em28xx *dev) | |||
531 | rc = em28xx_read_reg(dev, CHIPID_REG); | 531 | rc = em28xx_read_reg(dev, CHIPID_REG); |
532 | if (rc > 0) { | 532 | if (rc > 0) { |
533 | switch (rc) { | 533 | switch (rc) { |
534 | case 36: | 534 | case CHIP_ID_EM2883: |
535 | em28xx_info("chip ID is em2882/em2883\n"); | 535 | em28xx_info("chip ID is em2882/em2883\n"); |
536 | dev->wait_after_write = 0; | 536 | dev->wait_after_write = 0; |
537 | break; | 537 | break; |
diff --git a/drivers/media/video/em28xx/em28xx-reg.h b/drivers/media/video/em28xx/em28xx-reg.h new file mode 100644 index 000000000000..02eb2b171ba6 --- /dev/null +++ b/drivers/media/video/em28xx/em28xx-reg.h | |||
@@ -0,0 +1,88 @@ | |||
1 | #define EM_GPIO_0 (1 << 0) | ||
2 | #define EM_GPIO_1 (1 << 1) | ||
3 | #define EM_GPIO_2 (1 << 2) | ||
4 | #define EM_GPIO_3 (1 << 3) | ||
5 | #define EM_GPIO_4 (1 << 4) | ||
6 | #define EM_GPIO_5 (1 << 5) | ||
7 | #define EM_GPIO_6 (1 << 6) | ||
8 | #define EM_GPIO_7 (1 << 7) | ||
9 | |||
10 | #define EM_GPO_0 (1 << 0) | ||
11 | #define EM_GPO_1 (1 << 1) | ||
12 | #define EM_GPO_2 (1 << 2) | ||
13 | #define EM_GPO_3 (1 << 3) | ||
14 | |||
15 | /* em2800 registers */ | ||
16 | #define EM2800_AUDIOSRC_REG 0x08 | ||
17 | |||
18 | /* em28xx registers */ | ||
19 | |||
20 | /* GPIO/GPO registers */ | ||
21 | #define EM_R04_GPO 0x04 /* em2880-em2883 only */ | ||
22 | #define EM_R08_GPIO 0x08 /* em2820 or upper */ | ||
23 | |||
24 | #define I2C_CLK_REG 0x06 | ||
25 | #define CHIPID_REG 0x0a | ||
26 | #define USBSUSP_REG 0x0c /* */ | ||
27 | |||
28 | #define AUDIOSRC_REG 0x0e | ||
29 | #define XCLK_REG 0x0f | ||
30 | |||
31 | #define VINMODE_REG 0x10 | ||
32 | #define VINCTRL_REG 0x11 | ||
33 | #define VINENABLE_REG 0x12 /* */ | ||
34 | |||
35 | #define GAMMA_REG 0x14 | ||
36 | #define RGAIN_REG 0x15 | ||
37 | #define GGAIN_REG 0x16 | ||
38 | #define BGAIN_REG 0x17 | ||
39 | #define ROFFSET_REG 0x18 | ||
40 | #define GOFFSET_REG 0x19 | ||
41 | #define BOFFSET_REG 0x1a | ||
42 | |||
43 | #define OFLOW_REG 0x1b | ||
44 | #define HSTART_REG 0x1c | ||
45 | #define VSTART_REG 0x1d | ||
46 | #define CWIDTH_REG 0x1e | ||
47 | #define CHEIGHT_REG 0x1f | ||
48 | |||
49 | #define YGAIN_REG 0x20 | ||
50 | #define YOFFSET_REG 0x21 | ||
51 | #define UVGAIN_REG 0x22 | ||
52 | #define UOFFSET_REG 0x23 | ||
53 | #define VOFFSET_REG 0x24 | ||
54 | #define SHARPNESS_REG 0x25 | ||
55 | |||
56 | #define COMPR_REG 0x26 | ||
57 | #define OUTFMT_REG 0x27 | ||
58 | |||
59 | #define XMIN_REG 0x28 | ||
60 | #define XMAX_REG 0x29 | ||
61 | #define YMIN_REG 0x2a | ||
62 | #define YMAX_REG 0x2b | ||
63 | |||
64 | #define HSCALELOW_REG 0x30 | ||
65 | #define HSCALEHIGH_REG 0x31 | ||
66 | #define VSCALELOW_REG 0x32 | ||
67 | #define VSCALEHIGH_REG 0x33 | ||
68 | |||
69 | #define AC97LSB_REG 0x40 | ||
70 | #define AC97MSB_REG 0x41 | ||
71 | #define AC97ADDR_REG 0x42 | ||
72 | #define AC97BUSY_REG 0x43 | ||
73 | |||
74 | /* em202 registers */ | ||
75 | #define MASTER_AC97 0x02 | ||
76 | #define LINE_IN_AC97 0x10 | ||
77 | #define VIDEO_AC97 0x14 | ||
78 | |||
79 | /* register settings */ | ||
80 | #define EM2800_AUDIO_SRC_TUNER 0x0d | ||
81 | #define EM2800_AUDIO_SRC_LINE 0x0c | ||
82 | #define EM28XX_AUDIO_SRC_TUNER 0xc0 | ||
83 | #define EM28XX_AUDIO_SRC_LINE 0x80 | ||
84 | |||
85 | /* FIXME: Need to be populated with the other chip ID's */ | ||
86 | enum em28xx_chip_id { | ||
87 | CHIP_ID_EM2883 = 36, | ||
88 | }; | ||
diff --git a/drivers/media/video/em28xx/em28xx.h b/drivers/media/video/em28xx/em28xx.h index 8f12b848b1d1..2188bc44c465 100644 --- a/drivers/media/video/em28xx/em28xx.h +++ b/drivers/media/video/em28xx/em28xx.h | |||
@@ -35,6 +35,7 @@ | |||
35 | #include <media/videobuf-dvb.h> | 35 | #include <media/videobuf-dvb.h> |
36 | #endif | 36 | #endif |
37 | #include "tuner-xc2028.h" | 37 | #include "tuner-xc2028.h" |
38 | #include "em28xx-reg.h" | ||
38 | 39 | ||
39 | /* Boards supported by driver */ | 40 | /* Boards supported by driver */ |
40 | #define EM2800_BOARD_UNKNOWN 0 | 41 | #define EM2800_BOARD_UNKNOWN 0 |
@@ -480,71 +481,6 @@ int em28xx_get_key_em_haup(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw); | |||
480 | int em28xx_get_key_pinnacle_usb_grey(struct IR_i2c *ir, u32 *ir_key, | 481 | int em28xx_get_key_pinnacle_usb_grey(struct IR_i2c *ir, u32 *ir_key, |
481 | u32 *ir_raw); | 482 | u32 *ir_raw); |
482 | 483 | ||
483 | /* em2800 registers */ | ||
484 | #define EM2800_AUDIOSRC_REG 0x08 | ||
485 | |||
486 | /* em28xx registers */ | ||
487 | #define I2C_CLK_REG 0x06 | ||
488 | #define CHIPID_REG 0x0a | ||
489 | #define USBSUSP_REG 0x0c /* */ | ||
490 | |||
491 | #define AUDIOSRC_REG 0x0e | ||
492 | #define XCLK_REG 0x0f | ||
493 | |||
494 | #define VINMODE_REG 0x10 | ||
495 | #define VINCTRL_REG 0x11 | ||
496 | #define VINENABLE_REG 0x12 /* */ | ||
497 | |||
498 | #define GAMMA_REG 0x14 | ||
499 | #define RGAIN_REG 0x15 | ||
500 | #define GGAIN_REG 0x16 | ||
501 | #define BGAIN_REG 0x17 | ||
502 | #define ROFFSET_REG 0x18 | ||
503 | #define GOFFSET_REG 0x19 | ||
504 | #define BOFFSET_REG 0x1a | ||
505 | |||
506 | #define OFLOW_REG 0x1b | ||
507 | #define HSTART_REG 0x1c | ||
508 | #define VSTART_REG 0x1d | ||
509 | #define CWIDTH_REG 0x1e | ||
510 | #define CHEIGHT_REG 0x1f | ||
511 | |||
512 | #define YGAIN_REG 0x20 | ||
513 | #define YOFFSET_REG 0x21 | ||
514 | #define UVGAIN_REG 0x22 | ||
515 | #define UOFFSET_REG 0x23 | ||
516 | #define VOFFSET_REG 0x24 | ||
517 | #define SHARPNESS_REG 0x25 | ||
518 | |||
519 | #define COMPR_REG 0x26 | ||
520 | #define OUTFMT_REG 0x27 | ||
521 | |||
522 | #define XMIN_REG 0x28 | ||
523 | #define XMAX_REG 0x29 | ||
524 | #define YMIN_REG 0x2a | ||
525 | #define YMAX_REG 0x2b | ||
526 | |||
527 | #define HSCALELOW_REG 0x30 | ||
528 | #define HSCALEHIGH_REG 0x31 | ||
529 | #define VSCALELOW_REG 0x32 | ||
530 | #define VSCALEHIGH_REG 0x33 | ||
531 | |||
532 | #define AC97LSB_REG 0x40 | ||
533 | #define AC97MSB_REG 0x41 | ||
534 | #define AC97ADDR_REG 0x42 | ||
535 | #define AC97BUSY_REG 0x43 | ||
536 | |||
537 | /* em202 registers */ | ||
538 | #define MASTER_AC97 0x02 | ||
539 | #define LINE_IN_AC97 0x10 | ||
540 | #define VIDEO_AC97 0x14 | ||
541 | |||
542 | /* register settings */ | ||
543 | #define EM2800_AUDIO_SRC_TUNER 0x0d | ||
544 | #define EM2800_AUDIO_SRC_LINE 0x0c | ||
545 | #define EM28XX_AUDIO_SRC_TUNER 0xc0 | ||
546 | #define EM28XX_AUDIO_SRC_LINE 0x80 | ||
547 | |||
548 | /* printk macros */ | 484 | /* printk macros */ |
549 | 485 | ||
550 | #define em28xx_err(fmt, arg...) do {\ | 486 | #define em28xx_err(fmt, arg...) do {\ |