Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 30784
b: refs/heads/master
c: 6cad56f
h: refs/heads/master
v: v3
  • Loading branch information
Jim Cromie authored and Linus Torvalds committed Jun 28, 2006
1 parent 3e3c924 commit 950b79a
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f31000e573da052b6b8bcc21faff520b4e2eda7a
refs/heads/master: 6cad56fd884b7eb85ae193c94b688fe76680fcbf
27 changes: 23 additions & 4 deletions trunk/drivers/char/pc8736x_gpio.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ MODULE_PARM_DESC(major, "Major device number");

static DEFINE_SPINLOCK(pc8736x_gpio_config_lock);
static unsigned pc8736x_gpio_base;
static u8 pc8736x_gpio_shadow[4];

#define SIO_BASE1 0x2E /* 1st command-reg to check */
#define SIO_BASE2 0x4E /* alt command-reg to check */
Expand Down Expand Up @@ -184,6 +185,7 @@ static void pc8736x_gpio_set(unsigned minor, int val)
val = inb_p(pc8736x_gpio_base + port_offset[port] + PORT_IN);

dev_dbg(&pdev->dev, "wrote %x, read: %x\n", curval, val);
pc8736x_gpio_shadow[port] = val;
}

static void pc8736x_gpio_set_high(unsigned index)
Expand All @@ -196,15 +198,18 @@ static void pc8736x_gpio_set_low(unsigned index)
pc8736x_gpio_set(index, 0);
}

static int pc8736x_gpio_current(unsigned index)
static int pc8736x_gpio_current(unsigned minor)
{
dev_warn(&pdev->dev, "pc8736x_gpio_current unimplemented\n");
return 0;
int port, bit;
minor &= 0x1f;
port = minor >> 3;
bit = minor & 7;
return ((pc8736x_gpio_shadow[port] >> bit) & 0x01);
}

static void pc8736x_gpio_change(unsigned index)
{
pc8736x_gpio_set(index, !pc8736x_gpio_get(index));
pc8736x_gpio_set(index, !pc8736x_gpio_current(index));
}

static struct nsc_gpio_ops pc8736x_access = {
Expand Down Expand Up @@ -238,6 +243,18 @@ static struct file_operations pc8736x_gpio_fops = {
.read = nsc_gpio_read,
};

static void __init pc8736x_init_shadow(void)
{
int port;

/* read the current values driven on the GPIO signals */
for (port = 0; port < 4; ++port)
pc8736x_gpio_shadow[port]
= inb_p(pc8736x_gpio_base + port_offset[port]
+ PORT_OUT);

}

static int __init pc8736x_gpio_init(void)
{
int rc = 0;
Expand Down Expand Up @@ -317,5 +334,7 @@ static void __exit pc8736x_gpio_cleanup(void)
unregister_chrdev(major, DEVNAME);
}

EXPORT_SYMBOL(pc8736x_access);

module_init(pc8736x_gpio_init);
module_exit(pc8736x_gpio_cleanup);

0 comments on commit 950b79a

Please sign in to comment.