1
0
mirror of git://projects.qi-hardware.com/ben-blinkenlights.git synced 2024-09-30 02:31:59 +03:00
ben-blinkenlights/ubb-vga/regs4740.h
Werner Almesberger 6d8c8dd951 ubb-vga: use a free-running counter instead of resetting it for each line
Two benefits:
1) We don't accumulate errors from the delay between the timer reset and
   the deadline preceding it
2) In the future, we may use WAIT to wait for timer expiration, which
   should cause less bus activity and is should also reduce jitter

- regs4740.h (TFR. TFSR, TFCR, TDHR): added more timer registers
- ubb-vga.c (until): renamed to "delay" and changed to measure relative
  to the last deadline
- ubb-vga.c (line, hdelay, frame): replaced "until" with "delay"
- ubb-vga.c (hdelay, frame, session): reset the timer only once, at
  the beginning of the session
- ubb-vga.c (frame): we didn't wait for the horizontal back porch of
  the last image line
2011-05-02 06:11:29 -03:00

84 lines
3.1 KiB
C

/*
* regs4740.h - Jz4740 register definitions (subset)
*
* Written 2011 by Werner Almesberger
* Copyright 2011 Werner Almesberger
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*/
#ifndef REGS4740_H
#define REGS4740_H
#include <stdint.h>
#define SOC_BASE 0x10000000
#define REG_WINDOW 0x4000000
#define REG(n) (*(volatile uint32_t *) ((void *) (REG_BASE_PTR)+(n)))
#define REG_PADDR(r) ((unsigned long) \
((void *) &(r)-(void *) (REG_BASE_PTR)+SOC_BASE))
#define _CGU(n) REG(0x0000000+(n))
#define _INTC(n) REG(0x0001000+(n))
#define _TCU(n) REG(0x0002000+(n))
#define _GPIO(n) REG(0x0010000+(n))
#define _MSC(n) REG(0x0021000+(n))
#define _DMAC(n) REG(0x3020000+(n))
#define CLKGR _CGU(0x0020) /* Clock Gate */
#define MSCCDR _CGU(0x0068) /* MSC device clock divider */
#define PDPIN _GPIO(0x300) /* port D pin level */
#define PDDATS _GPIO(0x314) /* port D data set */
#define PDDATC _GPIO(0x318) /* port D data clear */
#define PDFUNS _GPIO(0x344) /* port D function set */
#define PDFUNC _GPIO(0x348) /* port D function clear */
#define PDDIRS _GPIO(0x364) /* port D direction set */
#define PDDIRC _GPIO(0x368) /* port D direction clear */
#define ICMR _INTC(0x04) /* Interrupt controller mask */
#define ICMSR _INTC(0x08) /* Interrupt controller mask set */
#define ICMCR _INTC(0x0c) /* Interrupt controller mask clear */
#define TSSR _TCU(0x2c) /* Timer STOP set */
#define TSCR _TCU(0x3c) /* Timer STOP clear */
#define TESR _TCU(0x14) /* Timer counter enable set */
#define TECR _TCU(0x18) /* Timer counter enable clear */
#define TFR _TCU(0x20) /* Timer flag */
#define TFSR _TCU(0x24) /* Timer flag set */
#define TFCR _TCU(0x28) /* Timer flag clear */
#define TCSR(n) _TCU(0x4c+0x10*(n)) /* Timer control */
#define TDFR(n) _TCU(0x40+0x10*(n)) /* Timer data full */
#define TDHR(n) _TCU(0x44+0x10*(n)) /* Timer data half */
#define TCNT(n) _TCU(0x48+0x10*(n)) /* Timer counter */
#define MSC_STRPCL _MSC(0x00) /* Start/stop MMC/SD clock */
#define MSC_STAT _MSC(0x04) /* MSC status */
#define MSC_CLKRT _MSC(0x08) /* MSC clock rate */
#define MSC_CMDAT _MSC(0x0c) /* MMC/SD command and data control */
#define MSC_RESTO _MSC(0x10) /* MMC/SD response time out */
#define MSC_BLKLEN _MSC(0x18) /* MMC/SD block length */
#define MSC_NOB _MSC(0x1c) /* MMC/SD number of blocks */
#define MSC_CMD _MSC(0x2c) /* MMC/SD command index */
#define MSC_ARG _MSC(0x30) /* MMC/SD command argument */
#define MSC_TXFIFO _MSC(0x3c) /* MMC/SD transmit data FIFO */
#define _DMAn(n, r) _DMAC(0x20*(n)+(r))
#define DSA(n) _DMAn(n, 0x00) /* DMA source address */
#define DTA(n) _DMAn(n, 0x04) /* DMA target address */
#define DTC(n) _DMAn(n, 0x08) /* DMA transfer count */
#define DRT(n) _DMAn(n, 0x0c) /* DMA request type */
#define DCS(n) _DMAn(n, 0x10) /* DMA channel control/status */
#define DCM(n) _DMAn(n, 0x14) /* DMA command */
#define DMAC _DMAC(0x300) /* DMA control */
#define DDR _DMAC(0x308) /* DMA doorbell */
#endif /* !REGS4740_H */