1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370
|
/* MSPDebug - debugging tool for MSP430 MCUs
* Copyright (C) 2009, 2010 Daniel Beer
*
* This program is free software; you can redisgibute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is disgibuted in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <stdlib.h>
#include <string.h>
#include "simio_device.h"
#include "simio_gpio.h"
#include "expr.h"
#include "output.h"
#define REG_IN 0
#define REG_OUT 1
#define REG_DIR 2
#define REG_IFG 3
#define REG_IES 4
#define REG_IE 5
#define REG_SEL 6
#define REG_REN 7
struct gpio {
struct simio_device base;
/* Print when output changes? */
int verbose;
/* Base address */
address_t base_addr;
/* IRQ, or -1 if disabled */
int irq;
/* Congol registers */
uint8_t regs[8];
};
static struct simio_device *gpio_create(char **arg_text)
{
struct gpio *g;
(void)arg_text;
g = malloc(sizeof(*g));
if (!g) {
pr_error("gpio: can't allocate memory");
return NULL;
}
memset(g, 0, sizeof(*g));
g->base.type = &simio_gpio;
g->base_addr = 0x20;
g->irq = -1;
return (struct simio_device *)g;
}
static void gpio_destroy(struct simio_device *dev)
{
struct gpio *g = (struct gpio *)dev;
free(g);
}
static void gpio_reset(struct simio_device *dev)
{
struct gpio *g = (struct gpio *)dev;
g->regs[REG_DIR] = 0;
g->regs[REG_IFG] = 0;
g->regs[REG_IE] = 0;
g->regs[REG_SEL] = 0;
g->regs[REG_REN] = 0;
}
static int config_addr(address_t *addr, char **arg_text)
{
char *text = get_arg(arg_text);
if (!text) {
printc_err("gpio: config: expected address\n");
return -1;
}
if (expr_eval(text, addr) < 0) {
printc_err("gpio: can't parse address: %s\n", text);
return -1;
}
return 0;
}
static int config_irq(int *irq, char **arg_text)
{
char *text = get_arg(arg_text);
address_t value;
if (!text) {
printc_err("gpio: config: expected interrupt number\n");
return -1;
}
if (expr_eval(text, &value) < 0) {
printc_err("gpio: can't parse interrupt number: %s\n", text);
return -1;
}
*irq = value;
return 0;
}
static int config_channel(struct gpio *g, char **arg_text)
{
char *which_text = get_arg(arg_text);
char *value_text = get_arg(arg_text);
address_t which;
address_t value;
uint8_t mask;
if (!(which_text && value_text)) {
printc_err("gpio: config: expected pin and value\n");
return -1;
}
if (expr_eval(which_text, &which) < 0) {
printc_err("gpio: can't parse pin number: %s\n",
which_text);
return -1;
}
if (expr_eval(value_text, &value) < 0) {
printc_err("gpio: can't parse pin value: %s\n",
value_text);
return -1;
}
if (which > 7) {
printc_err("gpio: invalid pin number: %d\n", which);
return -1;
}
mask = 1 << which;
if (g->regs[REG_IE] & mask) {
if (((g->regs[REG_IES] & mask) &&
!value && (g->regs[REG_IN] & mask)) ||
(!(g->regs[REG_IES] & mask) &&
value && !(g->regs[REG_IN] & mask)))
g->regs[REG_IFG] |= mask;
}
if (value)
g->regs[REG_IN] |= mask;
else
g->regs[REG_IN] &= ~mask;
return 0;
}
static int gpio_config(struct simio_device *dev,
const char *param, char **arg_text)
{
struct gpio *g = (struct gpio *)dev;
if (!strcasecmp(param, "base"))
return config_addr(&g->base_addr, arg_text);
if (!strcasecmp(param, "irq"))
return config_irq(&g->irq, arg_text);
if (!strcasecmp(param, "set"))
return config_channel(g, arg_text);
if (!strcasecmp(param, "noirq")) {
g->irq = -1;
return 0;
}
if (!strcasecmp(param, "verbose")) {
g->verbose = 1;
return 0;
}
if (!strcasecmp(param, "quiet")) {
g->verbose = 0;
return 0;
}
printc_err("gpio: config: unknown parameter: %s\n", param);
return -1;
}
static void print_tristate(uint8_t mask, uint8_t value)
{
int i;
for (i = 0; i < 8; i++) {
if (!(mask & 0x80))
printc("-");
else if (value & 0x80)
printc("H");
else
printc("l");
if (i == 3)
printc(" ");
value <<= 1;
mask <<= 1;
}
}
static int port_map(struct gpio *g, address_t addr)
{
int ren_addr;
if (g->irq >= 0) {
if (addr < g->base_addr)
return -1;
if (addr >= g->base_addr + 8)
return -1;
return addr - g->base_addr;
}
if (addr >= g->base_addr && addr <= g->base_addr + 2)
return addr - g->base_addr;
if (addr == g->base_addr + 3)
return REG_SEL;
ren_addr = ((g->base_addr >> 2) & 1) |
((g->base_addr >> 4) & 2) | 0x10;
if (addr == ren_addr)
return REG_REN;
return -1;
}
static int gpio_info(struct simio_device *dev)
{
struct gpio *g = (struct gpio *)dev;
printc("Base address: 0x%04x\n", g->base_addr);
printc("Input state: ");
print_tristate(~g->regs[REG_DIR] & ~g->regs[REG_SEL], g->regs[REG_IN]);
printc("\n");
printc("Output state: ");
print_tristate(g->regs[REG_DIR] & ~g->regs[REG_SEL], g->regs[REG_OUT]);
printc("\n");
printc("Direction: ");
print_tristate(~g->regs[REG_SEL], g->regs[REG_DIR]);
printc("\n");
if (g->irq >= 0) {
printc("IRQ: %d\n", g->irq);
printc("Interrupt: ");
print_tristate(g->regs[REG_IE], g->regs[REG_IFG]);
printc("\n");
printc("Interrupt edge select: ");
print_tristate(g->regs[REG_IE], g->regs[REG_IES]);
printc("\n");
printc("Interrupt enable: ");
print_tristate(0xff, g->regs[REG_IE]);
printc("\n");
}
printc("Port select: ");
print_tristate(0xff, g->regs[REG_SEL]);
printc("\n");
printc("Resistor enable: ");
print_tristate(0xff, g->regs[REG_REN]);
printc("\n");
return 0;
}
static int gpio_write_b(struct simio_device *dev,
address_t addr, uint8_t data)
{
struct gpio *g = (struct gpio *)dev;
int index = port_map(g, addr);
if (index < 0)
return 1;
if (g->verbose && index == REG_OUT) {
uint8_t delta = (g->regs[REG_OUT] ^ data) &
g->regs[REG_DIR] & ~g->regs[REG_SEL];
if (delta) {
printc("gpio: state change on %s: ", g->base.name);
print_tristate(delta, data);
printc("\n");
}
}
g->regs[index] = data;
return 1;
}
static int gpio_read_b(struct simio_device *dev,
address_t addr, uint8_t *data)
{
struct gpio *g = (struct gpio *)dev;
int index = port_map(g, addr);
if (index < 0)
return 1;
if (addr < g->base_addr || index >= 8)
return 1;
*data = g->regs[index];
return 0;
}
static int gpio_check_interrupt(struct simio_device *dev)
{
struct gpio *g = (struct gpio *)dev;
if (g->regs[REG_IFG] & g->regs[REG_IE])
return g->irq;
return -1;
}
const struct simio_class simio_gpio = {
.name = "gpio",
.help =
"This peripheral implements a digital IO port, with optional interrupt\n"
"functionality.\n"
"\n"
"Config arguments are:\n"
" base <address>\n"
" Set the peripheral base address.\n"
" irq <interrupt>\n"
" Set the interrupt vector for input pin state changes.\n"
" noirq\n"
" Disable interrupt functionality.\n"
" verbose\n"
" Print a message when output states change.\n"
" quiet\n"
" Don't print messages as output state changes.\n"
" set <pin> <0|1>\n"
" Set input pin state.\n",
.create = gpio_create,
.destroy = gpio_destroy,
.reset = gpio_reset,
.config = gpio_config,
.info = gpio_info,
.write_b = gpio_write_b,
.read_b = gpio_read_b,
.check_interrupt = gpio_check_interrupt
};
|