Files
OpenCellular/chip/nrf51/ppi.h
Myles Watson 4e920054f9 nrf51: Add PPI wrappers
Programmable Peripheral Interconnect is a shared resource.

This CL adds code for allocating PPIs to devices.

BUG=None
BRANCH=None
TEST=Modify the I2C code to use this PPI allocation code and test
I2C communication (using experimental MXT touch controller code)

Change-Id: I8ec27867d041982ef18e8515d6434c5de2c189c5
Signed-off-by: Myles Watson <mylesgw@google.com>
Reviewed-on: https://chromium-review.googlesource.com/361405
Commit-Ready: Myles Watson <mylesgw@chromium.org>
Tested-by: Myles Watson <mylesgw@chromium.org>
Reviewed-by: Aseda Aboagye <aaboagye@chromium.org>
Reviewed-by: Levi Oliver <levio@google.com>
2016-07-20 22:22:06 -07:00

43 lines
1.3 KiB
C

/* Copyright 2016 The Chromium OS Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
/*
* PPI channels are a way to connect NRF51 EVENTs to TASKs without software
* involvement. They are like SHORTs, except between peripherals.
*
* PPI groups are user-defined sets of channels that can be enabled and disabled
* together.
*/
/*
* Reserve a pre-programmed PPI channel.
*
* Return EC_SUCCESS if ppi_chan is a pre-programmed channel that was not in
* use, otherwise returns EC_ERROR_BUSY.
*/
int ppi_request_pre_programmed_channel(int ppi_chan);
/*
* Reserve an available PPI channel.
*
* Return EC_SUCCESS and set the value of ppi_chan to an available PPI
* channel. If no channel is available, return EC_ERROR_BUSY.
*/
int ppi_request_channel(int *ppi_chan);
/* Release a PPI channel which was reserved with ppi_request_*_channel. */
void ppi_release_channel(int ppi_chan);
/*
* Reserve a PPI group.
*
* Return EC_SUCCESS and set the value of ppi_group to an available PPI
* group. If no group is available, return EC_ERROR_BUSY.
*/
int ppi_request_group(int *ppi_group);
/* Release a PPI channel which was reserved with ppi_request_*_channel. */
void ppi_release_group(int ppi_group);