1 /*
2 * Copyright (C) 2010-2013 Bluecherry, LLC <http://www.bluecherrydvr.com>
3 *
4 * Original author:
5 * Ben Collins <bcollins@ubuntu.com>
6 *
7 * Additional work by:
8 * John Brooks <john.brooks@bluecherry.net>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 */
24
25 #include <linux/kernel.h>
26 #include <linux/fs.h>
27 #include <linux/delay.h>
28 #include <linux/uaccess.h>
29
30 #include "solo6x10.h"
31
solo_gpio_mode(struct solo_dev * solo_dev,unsigned int port_mask,unsigned int mode)32 static void solo_gpio_mode(struct solo_dev *solo_dev,
33 unsigned int port_mask, unsigned int mode)
34 {
35 int port;
36 unsigned int ret;
37
38 ret = solo_reg_read(solo_dev, SOLO_GPIO_CONFIG_0);
39
40 /* To set gpio */
41 for (port = 0; port < 16; port++) {
42 if (!((1 << port) & port_mask))
43 continue;
44
45 ret &= (~(3 << (port << 1)));
46 ret |= ((mode & 3) << (port << 1));
47 }
48
49 solo_reg_write(solo_dev, SOLO_GPIO_CONFIG_0, ret);
50
51 /* To set extended gpio - sensor */
52 ret = solo_reg_read(solo_dev, SOLO_GPIO_CONFIG_1);
53
54 for (port = 0; port < 16; port++) {
55 if (!((1 << (port + 16)) & port_mask))
56 continue;
57
58 if (!mode)
59 ret &= ~(1 << port);
60 else
61 ret |= 1 << port;
62 }
63
64 solo_reg_write(solo_dev, SOLO_GPIO_CONFIG_1, ret);
65 }
66
solo_gpio_set(struct solo_dev * solo_dev,unsigned int value)67 static void solo_gpio_set(struct solo_dev *solo_dev, unsigned int value)
68 {
69 solo_reg_write(solo_dev, SOLO_GPIO_DATA_OUT,
70 solo_reg_read(solo_dev, SOLO_GPIO_DATA_OUT) | value);
71 }
72
solo_gpio_clear(struct solo_dev * solo_dev,unsigned int value)73 static void solo_gpio_clear(struct solo_dev *solo_dev, unsigned int value)
74 {
75 solo_reg_write(solo_dev, SOLO_GPIO_DATA_OUT,
76 solo_reg_read(solo_dev, SOLO_GPIO_DATA_OUT) & ~value);
77 }
78
solo_gpio_config(struct solo_dev * solo_dev)79 static void solo_gpio_config(struct solo_dev *solo_dev)
80 {
81 /* Video reset */
82 solo_gpio_mode(solo_dev, 0x30, 1);
83 solo_gpio_clear(solo_dev, 0x30);
84 udelay(100);
85 solo_gpio_set(solo_dev, 0x30);
86 udelay(100);
87
88 /* Warning: Don't touch the next line unless you're sure of what
89 * you're doing: first four gpio [0-3] are used for video. */
90 solo_gpio_mode(solo_dev, 0x0f, 2);
91
92 /* We use bit 8-15 of SOLO_GPIO_CONFIG_0 for relay purposes */
93 solo_gpio_mode(solo_dev, 0xff00, 1);
94
95 /* Initially set relay status to 0 */
96 solo_gpio_clear(solo_dev, 0xff00);
97 }
98
solo_gpio_init(struct solo_dev * solo_dev)99 int solo_gpio_init(struct solo_dev *solo_dev)
100 {
101 solo_gpio_config(solo_dev);
102 return 0;
103 }
104
solo_gpio_exit(struct solo_dev * solo_dev)105 void solo_gpio_exit(struct solo_dev *solo_dev)
106 {
107 solo_gpio_clear(solo_dev, 0x30);
108 solo_gpio_config(solo_dev);
109 }
110