summaryrefslogtreecommitdiff
path: root/chip/nrf51/i2c.c
diff options
context:
space:
mode:
authorMyles Watson <mylesgw@chromium.org>2015-02-27 10:00:16 -0800
committerchrome-bot <chrome-bot@chromium.org>2016-07-20 22:22:08 -0700
commitc7d7304442d6b62053fb8a755d2ee96ec2054895 (patch)
tree191ca6ec5a42945b1695ebd04649931abb313ad0 /chip/nrf51/i2c.c
parent4e920054f9a32ad1843fb6adc48a6a94ef4fb8ff (diff)
downloadchrome-ec-c7d7304442d6b62053fb8a755d2ee96ec2054895.tar.gz
nrf51: update I2C to use PPI code.
BUG=None BRANCH=None TEST=Test I2C communication Change-Id: Ia2f81fb323700a227b2ea92e8fb23fa0441cd333 Signed-off-by: Myles Watson <mylesgw@google.com> Reviewed-on: https://chromium-review.googlesource.com/361406 Commit-Ready: Myles Watson <mylesgw@chromium.org> Tested-by: Myles Watson <mylesgw@chromium.org> Reviewed-by: Aseda Aboagye <aaboagye@chromium.org>
Diffstat (limited to 'chip/nrf51/i2c.c')
-rw-r--r--chip/nrf51/i2c.c32
1 files changed, 21 insertions, 11 deletions
diff --git a/chip/nrf51/i2c.c b/chip/nrf51/i2c.c
index 11d90ba05a..62a4102350 100644
--- a/chip/nrf51/i2c.c
+++ b/chip/nrf51/i2c.c
@@ -9,6 +9,7 @@
#include "gpio.h"
#include "hooks.h"
#include "i2c.h"
+#include "ppi.h"
#include "registers.h"
#include "task.h"
#include "timer.h"
@@ -21,6 +22,9 @@
#define I2C_TIMEOUT 20000
+/* Keep track of the PPI channel used for each port */
+static int i2c_ppi_chan[] = {-1, -1};
+
static void i2c_init_port(unsigned int port);
/* board-specific setup for post-I2C module init */
@@ -40,10 +44,10 @@ static void i2c_init_port(unsigned int port)
NRF51_TWI_PSELSDA(port) = NRF51_TWI_SDA_PIN(port);
NRF51_TWI_FREQUENCY(port) = NRF51_TWI_FREQ(port);
- NRF51_PPI_CHENCLR = 1 << (NRF51_TWI_PPI_CHAN(port));
+ NRF51_PPI_CHENCLR = 1 << i2c_ppi_chan[port];
- NRF51_PPI_EEP(NRF51_TWI_PPI_CHAN(port)) = (uint32_t)&NRF51_TWI_BB(port);
- NRF51_PPI_TEP(NRF51_TWI_PPI_CHAN(port)) =
+ NRF51_PPI_EEP(i2c_ppi_chan[port]) = (uint32_t)&NRF51_TWI_BB(port);
+ NRF51_PPI_TEP(i2c_ppi_chan[port]) =
(uint32_t)&NRF51_TWI_SUSPEND(port);
/* Master enable */
@@ -55,12 +59,18 @@ static void i2c_init_port(unsigned int port)
static void i2c_init(void)
{
- int i;
+ int i, rv;
gpio_config_module(MODULE_I2C, 1);
- for (i = 0; i < i2c_ports_used; i++)
- i2c_init_port(i);
+ for (i = 0; i < i2c_ports_used; i++) {
+ if (i2c_ppi_chan[i] == -1) {
+ rv = ppi_request_channel(&i2c_ppi_chan[i]);
+ ASSERT(rv == EC_SUCCESS);
+
+ i2c_init_port(i);
+ }
+ }
}
DECLARE_HOOK(HOOK_INIT, i2c_init, HOOK_PRIO_INIT_I2C);
@@ -185,12 +195,12 @@ static int i2c_master_read(int port, int slave_addr, uint8_t *data, int size)
NRF51_TWI_ADDRESS(port) = slave_addr >> 1;
if (size == 1) /* Last byte: stop after this one. */
- NRF51_PPI_TEP(NRF51_TWI_PPI_CHAN(port)) =
+ NRF51_PPI_TEP(i2c_ppi_chan[port]) =
(uint32_t)&NRF51_TWI_STOP(port);
else
- NRF51_PPI_TEP(NRF51_TWI_PPI_CHAN(port)) =
+ NRF51_PPI_TEP(i2c_ppi_chan[port]) =
(uint32_t)&NRF51_TWI_SUSPEND(port);
- NRF51_PPI_CHENSET = 1 << NRF51_TWI_PPI_CHAN(port);
+ NRF51_PPI_CHENSET = 1 << i2c_ppi_chan[port];
NRF51_TWI_RXDRDY(port) = 0;
NRF51_TWI_STARTRX(port) = 1;
@@ -213,7 +223,7 @@ static int i2c_master_read(int port, int slave_addr, uint8_t *data, int size)
/* Second to the last byte: stop next time. */
if (curr_byte == size-2)
- NRF51_PPI_TEP(NRF51_TWI_PPI_CHAN(port)) =
+ NRF51_PPI_TEP(i2c_ppi_chan[port]) =
(uint32_t)&NRF51_TWI_STOP(port);
/*
@@ -237,7 +247,7 @@ static int i2c_master_read(int port, int slave_addr, uint8_t *data, int size)
NRF51_TWI_STOP(port) = 0;
- NRF51_PPI_CHENCLR = 1 << NRF51_TWI_PPI_CHAN(port);
+ NRF51_PPI_CHENCLR = 1 << i2c_ppi_chan[port];
return EC_SUCCESS;
}