mirror of
git://projects.qi-hardware.com/ben-blinkenlights.git
synced 2024-11-23 22:30:37 +02:00
Cleaned up bbl.c and added comments.
- bbl/bbl.c: PD* macros now contain the REG(), making their use easier - bbl/bbl.c: added description of the XBurst set/clear concept - bbl/bbl.c: added comments all over the place
This commit is contained in:
parent
87f1ae7744
commit
1f509de5ad
67
bbl/bbl.c
67
bbl/bbl.c
@ -19,42 +19,55 @@
|
|||||||
#include <sys/mman.h>
|
#include <sys/mman.h>
|
||||||
|
|
||||||
|
|
||||||
#define PDDATS 0x10010314
|
#define GPIO_BASE 0x10010000
|
||||||
#define PDDATC 0x10010318
|
|
||||||
#define PDFUNC 0x10010348
|
|
||||||
#define PDDIRS 0x10010364
|
|
||||||
#define PDDIRC 0x10010368
|
|
||||||
|
|
||||||
#define LEDS 10
|
#define REG(n) (*(uint32_t *) (mem+(n)-GPIO_BASE))
|
||||||
|
|
||||||
#define LED_MASK 0x3f00
|
/*
|
||||||
#define LED_SEL 11
|
* The XBurst CPUs use an interesting concept for setting GPIOs: instead of
|
||||||
|
* writing the value of a pin (0 or 1) directly to an output latch, the latch
|
||||||
|
* is set by writing a 1 to a "set" register and cleared by writing a 1 to a
|
||||||
|
* "clear" register. This way, only an atomic store but no atomic
|
||||||
|
* read-modify-write operations are necessary for changing only part of the
|
||||||
|
* bits on a port.
|
||||||
|
*
|
||||||
|
* The same set/clear mechanism is also used for the other writable registers
|
||||||
|
* affecting GPIOs, e.g., the direction (input/output) and function (GPIO or
|
||||||
|
* MMC) registers.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#define PDDATS REG(0x10010314) /* port D data set */
|
||||||
|
#define PDDATC REG(0x10010318) /* port D data clear */
|
||||||
|
#define PDFUNC REG(0x10010348) /* port D function clear */
|
||||||
|
#define PDDIRS REG(0x10010364) /* port D direction set */
|
||||||
|
#define PDDIRC REG(0x10010368) /* port D direction clear */
|
||||||
|
|
||||||
|
#define LEDS 10 /* number of LEDs */
|
||||||
|
|
||||||
|
#define GROUP_SEL 11 /* PD11, DAT1 - LED group selection */
|
||||||
|
|
||||||
|
#define LED_MASK 0x3f00 /* all the LED groups and GROUP_SEL */
|
||||||
|
|
||||||
#define DELAY_US 50000
|
#define DELAY_US 50000
|
||||||
|
|
||||||
#define PAGE_SIZE 4096
|
#define PAGE_SIZE 4096
|
||||||
#define GPIO_BASE 0x10010000
|
|
||||||
#define REG(n) (*(uint32_t *) (mem+(n)-GPIO_BASE))
|
|
||||||
|
|
||||||
static volatile void *mem;
|
static volatile void *mem;
|
||||||
|
|
||||||
|
|
||||||
/* ----- Command-line parsing ---------------------------------------------- */
|
static int map(int group)
|
||||||
|
|
||||||
|
|
||||||
static int map(int g)
|
|
||||||
{
|
{
|
||||||
switch (g) {
|
switch (group) {
|
||||||
case 0:
|
case 0:
|
||||||
return 12;
|
return 12; /* PD12, DAT2 */
|
||||||
case 1:
|
case 1:
|
||||||
return 13;
|
return 13; /* PD13, DAT3/CD */
|
||||||
case 2:
|
case 2:
|
||||||
return 8;
|
return 8; /* PD08, CMD */
|
||||||
case 3:
|
case 3:
|
||||||
return 9;
|
return 9; /* PD09, CLK */
|
||||||
case 4:
|
case 4:
|
||||||
return 10;
|
return 10; /* PD10, DAT0 */
|
||||||
default:
|
default:
|
||||||
abort();
|
abort();
|
||||||
}
|
}
|
||||||
@ -65,18 +78,18 @@ static void set(int n)
|
|||||||
{
|
{
|
||||||
|
|
||||||
if (n & 1) {
|
if (n & 1) {
|
||||||
REG(PDDATC) = LED_MASK;
|
PDDATC = LED_MASK;
|
||||||
REG(PDDATS) = 1 << map(n >> 1);
|
PDDATS = 1 << map(n >> 1);
|
||||||
} else {
|
} else {
|
||||||
REG(PDDATS) = LED_MASK;
|
PDDATS = LED_MASK;
|
||||||
REG(PDDATC) = 1 << map(n >> 1);
|
PDDATC = 1 << map(n >> 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static void die(int sig)
|
static void die(int sig)
|
||||||
{
|
{
|
||||||
REG(PDDIRC) = LED_MASK;
|
PDDIRC = LED_MASK; /* make all MMC pins inputs again */
|
||||||
_exit(0);
|
_exit(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -99,8 +112,8 @@ int main(int argc, char **argv)
|
|||||||
|
|
||||||
signal(SIGINT, die);
|
signal(SIGINT, die);
|
||||||
|
|
||||||
REG(PDFUNC) = LED_MASK;
|
PDFUNC = LED_MASK; /* make all MMC pins GPIOs */
|
||||||
REG(PDDIRS) = LED_MASK;
|
PDDIRS = LED_MASK; /* make all MMC pins outputs */
|
||||||
|
|
||||||
while (1) {
|
while (1) {
|
||||||
for (i = 0; i != LEDS-1; i++) {
|
for (i = 0; i != LEDS-1; i++) {
|
||||||
|
Loading…
Reference in New Issue
Block a user