~ubuntu-branches/ubuntu/saucy/linux-ti-omap4/saucy-proposed

« back to all changes in this revision

Viewing changes to drivers/watchdog/it87_wdt.c

  • Committer: Package Import Robot
  • Author(s): Paolo Pisati, Paolo Pisati, Stefan Bader, Upstream Kernel Changes
  • Date: 2012-08-15 17:17:43 UTC
  • Revision ID: package-import@ubuntu.com-20120815171743-h5wnuf51xe7pvdid
Tags: 3.5.0-207.13
[ Paolo Pisati ]

* Start new release

[ Stefan Bader ]

* (config) Enable getabis to use local package copies

[ Upstream Kernel Changes ]

* fixup: gargabe collect iva_seq[0|1] init
* [Config] enable all SND_OMAP_SOC_*s
* fixup: cm2xxx_3xxx.o is needed for omap2_cm_read|write_reg
* fixup: add some snd_soc_dai* helper functions
* fixup: s/snd_soc_dpcm_params/snd_soc_dpcm/g
* fixup: typo, no_host_mode and useless SDP4430 init
* fixup: enable again aess hwmod

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
 *                  http://www.ite.com.tw/
13
13
 *
14
14
 *      Support of the watchdog timers, which are available on
15
 
 *      IT8702, IT8712, IT8716, IT8718, IT8720, IT8721 and IT8726.
 
15
 *      IT8702, IT8712, IT8716, IT8718, IT8720, IT8721, IT8726
 
16
 *      and IT8728.
16
17
 *
17
18
 *      This program is free software; you can redistribute it and/or
18
19
 *      modify it under the terms of the GNU General Public License
84
85
#define IT8720_ID       0x8720
85
86
#define IT8721_ID       0x8721
86
87
#define IT8726_ID       0x8726  /* the data sheet suggest wrongly 0x8716 */
 
88
#define IT8728_ID       0x8728
87
89
 
88
90
/* GPIO Configuration Registers LDN=0x07 */
89
91
#define WDTCTRL         0x71
95
97
#define WDT_CIRINT      0x80
96
98
#define WDT_MOUSEINT    0x40
97
99
#define WDT_KYBINT      0x20
98
 
#define WDT_GAMEPORT    0x10 /* not in it8718, it8720, it8721 */
 
100
#define WDT_GAMEPORT    0x10 /* not in it8718, it8720, it8721, it8728 */
99
101
#define WDT_FORCE       0x02
100
102
#define WDT_ZERO        0x01
101
103
 
616
618
        case IT8718_ID:
617
619
        case IT8720_ID:
618
620
        case IT8721_ID:
 
621
        case IT8728_ID:
619
622
                max_units = 65535;
620
623
                try_gameport = 0;
621
624
                break;