Skip to content

Commit

Permalink
lpc176x: Add support for GPIO pins
Browse files Browse the repository at this point in the history
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
  • Loading branch information
KevinOConnor committed May 25, 2018
1 parent 970831e commit c78b907
Show file tree
Hide file tree
Showing 4 changed files with 120 additions and 1 deletion.
5 changes: 5 additions & 0 deletions klippy/pins.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ def named_pins(fmt, port_count, bit_count=32):
for port in range(port_count)
for portbit in range(bit_count) }

def lpc_pins():
return { 'P%d.%d' % (port, pin) : port * 32 + pin
for port in range(5) for pin in range(32) }

def beaglebone_pins():
gpios = named_pins("gpio%d_%d", 4)
gpios.update({"AIN%d" % i: i+4*32 for i in range(8)})
Expand All @@ -37,6 +41,7 @@ def beaglebone_pins():
"atmega1280": port_pins(12), "atmega2560": port_pins(12),
"sam3x8e": port_pins(4, 32),
"stm32f103": port_pins(5, 16),
"lpc176x": lpc_pins(),
"pru": beaglebone_pins(),
"linux": {"analog%d" % i: i for i in range(8)}, # XXX
}
Expand Down
1 change: 1 addition & 0 deletions src/lpc176x/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ if MACH_LPC176X
config LPC_SELECT
bool
default y
select HAVE_GPIO

config BOARD_DIRECTORY
string
Expand Down
93 changes: 92 additions & 1 deletion src/lpc176x/gpio.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,29 @@
// This file may be distributed under the terms of the GNU GPLv3 license.

#include "LPC17xx.h" // LPC_PINCON
#include "internal.h" // gpio_peripheral
#include "board/irq.h" // irq_save
#include "command.h" // shutdown
#include "gpio.h" // gpio_out_setup
#include "internal.h" // gpio_peripheral
#include "sched.h" // sched_shutdown


/****************************************************************
* Pin mappings
****************************************************************/

#define GPIO(PORT, NUM) ((PORT) * 32 + (NUM))
#define GPIO2PORT(PIN) ((PIN) / 32)
#define GPIO2BIT(PIN) (1<<((PIN) % 32))

static LPC_GPIO_TypeDef * const digital_regs[] = {
LPC_GPIO0, LPC_GPIO1, LPC_GPIO2, LPC_GPIO3, LPC_GPIO4
};


/****************************************************************
* General Purpose Input Output (GPIO) pins
****************************************************************/

// Set the mode and extended function of a pin
void
Expand All @@ -26,3 +47,73 @@ gpio_peripheral(int bank, int pin, int func, int pullup)
pinmode[bank_pos] = (pinmode[bank_pos] & mask) | mode_bits;
irq_restore(flag);
}


struct gpio_out
gpio_out_setup(uint8_t pin, uint8_t val)
{
if (GPIO2PORT(pin) >= ARRAY_SIZE(digital_regs))
goto fail;
LPC_GPIO_TypeDef *regs = digital_regs[GPIO2PORT(pin)];
uint32_t bit = GPIO2BIT(pin);
irqstatus_t flag = irq_save();
if (val)
regs->FIOSET = bit;
else
regs->FIOCLR = bit;
regs->FIODIR |= bit;
irq_restore(flag);
return (struct gpio_out){ .regs=regs, .bit=bit };
fail:
shutdown("Not an output pin");
}

void
gpio_out_toggle_noirq(struct gpio_out g)
{
LPC_GPIO_TypeDef *regs = g.regs;
regs->FIOPIN = regs->FIOSET ^ g.bit;
}

void
gpio_out_toggle(struct gpio_out g)
{
irqstatus_t flag = irq_save();
gpio_out_toggle_noirq(g);
irq_restore(flag);
}

void
gpio_out_write(struct gpio_out g, uint8_t val)
{
LPC_GPIO_TypeDef *regs = g.regs;
if (val)
regs->FIOSET = g.bit;
else
regs->FIOCLR = g.bit;
}


struct gpio_in
gpio_in_setup(uint8_t pin, int8_t pull_up)
{
if (GPIO2PORT(pin) >= ARRAY_SIZE(digital_regs))
goto fail;
uint32_t port = GPIO2PORT(pin);
LPC_GPIO_TypeDef *regs = digital_regs[port];
uint32_t bit = GPIO2BIT(pin);
irqstatus_t flag = irq_save();
gpio_peripheral(port, pin % 32, 0, pull_up);
regs->FIODIR &= ~bit;
irq_restore(flag);
return (struct gpio_in){ .regs=regs, .bit=bit };
fail:
shutdown("Not an input pin");
}

uint8_t
gpio_in_read(struct gpio_in g)
{
LPC_GPIO_TypeDef *regs = g.regs;
return !!(regs->FIOPIN & g.bit);
}
22 changes: 22 additions & 0 deletions src/lpc176x/gpio.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#ifndef __LPC176X_GPIO_H
#define __LPC176X_GPIO_H

#include <stdint.h>

struct gpio_out {
void *regs;
uint32_t bit;
};
struct gpio_out gpio_out_setup(uint8_t pin, uint8_t val);
void gpio_out_toggle_noirq(struct gpio_out g);
void gpio_out_toggle(struct gpio_out g);
void gpio_out_write(struct gpio_out g, uint8_t val);

struct gpio_in {
void *regs;
uint32_t bit;
};
struct gpio_in gpio_in_setup(uint8_t pin, int8_t pull_up);
uint8_t gpio_in_read(struct gpio_in g);

#endif // gpio.h

0 comments on commit c78b907

Please sign in to comment.