FreeCalypso > hg > fc-magnetite
view src/cs/drivers/drv_app/r2d/uwire.h @ 673:62a5285e014a
Lorekeeping: allow tpudrv-leonardo.lib on Leonardo/Tango
Back in 2015 the Mother's idea was to produce a FreeCalypso development
board that would be a clone of TI Leonardo, including the original
quadband RFFE; one major additional stipulation was that this board
needed to be able to run original unmodified TCS211-20070608 firmware
with all blobs intact, with only minimal binary patches to main.lib
and tpudrv.lib. The necessary patched libs were produced at that time
in the tcs211-patches repository.
That plan was changed and we produced FCDEV3B instead, with Openmoko's
triband RFFE instead of Leonardo quadband, but when FC Magnetite started
in 2016, a TPUDRV_blob= provision was still made, allowing the possibility
of patching OM's tpudrv.lib for a restored Leonardo RFFE.
Now in 2020 we have FC Tango which is essentially a verbatim clone of
Leonardo core, including the original quadband RFFE. We have also
deblobbed our firmware so much that we have absolutely no real need
for a blob version of tpudrv.lib - but I thought it would be neat to put
the ancient TPUDRV_blob= mechanism (classic config) to its originally
intended use, just for the heck of it.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 29 May 2020 03:55:36 +0000 |
parents | b8fc86826624 |
children |
line wrap: on
line source
/** @file: uwire.h @author Davide Carpegna @version 1.0 Purpose: Driver for the uwire HD module */ /* Date Modification ------------------------------------ 09/22/2000 Create 10/18/2001 Updated for R2D by Christophe Favergeon (C) Copyright 2000 by Texas Instruments Incorporated, All Rights Reserved */ #ifndef _UWIRE_H_ #define _UWIRE_H_ #define MEM_UWIRE 0xFFFE4000 #define TDR (MEM_UWIRE) #define RDR (MEM_UWIRE) #define CSR (MEM_UWIRE+0x02) #define SR1 (MEM_UWIRE+0x04) #define SR2 (MEM_UWIRE+0x06) #define SR3 (MEM_UWIRE+0x08) #define INDEX_CS1 (1 << 10) #define NB_BITS_WR_8 (1 << 8 ) #define INDEX_CS0 0 #define NB_BITS_WR_9 (9 << 5) #define CS_CMD (1 << 12) #define START (1 << 13) #define CS1_EDGE_RD (1 << 6) #define CS1_FRQ_FINT_4 (1 << 9) #define CS0_FRQ_FINT_2 0 #define CS0_FRQ_FINT_4 (1 << 3) #define SR3_CLK_EN 1 #define CSRB ( 1<<14 ) #define IO_SEL0 0xFFFEF008 #define IO_SEL 0xFFFEF00A #define GPIO_INOUT 0xFFFE4804 #define GPIO_OUT 0xFFFE4802 #define CNTL_RST 0xFFFFFD04 #ifdef _WINDOWS #ifdef __cplusplus extern "C" { #endif #endif // prototypes of uwire functions for lcd BOOLEAN lcd_polling(void); void lcd_transmit_cmd(UINT8 cmd); void uwire_init_lcd(void); // Defined only for board void lcd_transmit_data(UINT8 data); // Defined only for PC void lcd_refresh(void); void lcd_set_pos(unsigned char x,unsigned char y); void* lcd_get_dc(void); #ifdef _WINDOWS #ifdef __cplusplus } #endif #endif #endif /*_UWIRE_H_*/