aboutsummaryrefslogtreecommitdiffstats
path: root/boards/base/Olimex-SAM7EX256-GE12
diff options
context:
space:
mode:
authorinmarket <andrewh@inmarket.com.au>2015-02-07 21:58:24 +1000
committerinmarket <andrewh@inmarket.com.au>2015-02-07 21:58:24 +1000
commit867324f1d54382cbb967223699b15912cd880991 (patch)
treec16e1606f955b837e40ed9d8398b6b41abba2b92 /boards/base/Olimex-SAM7EX256-GE12
parent5b2fff679de51ccb9097ebbf8cb8f2fe2ff778b7 (diff)
downloaduGFX-867324f1d54382cbb967223699b15912cd880991.tar.gz
uGFX-867324f1d54382cbb967223699b15912cd880991.tar.bz2
uGFX-867324f1d54382cbb967223699b15912cd880991.zip
Board file fixes for the Olimex-SAM7EX256 board
Diffstat (limited to 'boards/base/Olimex-SAM7EX256-GE12')
-rw-r--r--boards/base/Olimex-SAM7EX256-GE12/board_Nokia6610GE12.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/boards/base/Olimex-SAM7EX256-GE12/board_Nokia6610GE12.h b/boards/base/Olimex-SAM7EX256-GE12/board_Nokia6610GE12.h
index f6c73a14..f1c1c42f 100644
--- a/boards/base/Olimex-SAM7EX256-GE12/board_Nokia6610GE12.h
+++ b/boards/base/Olimex-SAM7EX256-GE12/board_Nokia6610GE12.h
@@ -100,9 +100,7 @@ static inline void init_board(GDisplay *g) {
pPIOA->PIO_SODR = PIOA_LCD_RESET_MASK; // Set PA2 to HIGH
pPIOA->PIO_OER = PIOA_LCD_RESET_MASK; // Configure PA2 as output
- // CS pin - this seems to be ignored
- // pPIOA->PIO_SODR = 1<<12; // Set PA2 to HIGH
- // pPIOA->PIO_OER = 1<<12; // Configure PA2 as output
+ // CS pin - this is driven automatically by the SPI hardware itself
// Init SPI0
// Disable the following pins from PIO control (will be used instead by the SPI0 peripheral)
@@ -119,6 +117,7 @@ static inline void init_board(GDisplay *g) {
// Fixed mode
pSPI->SPI_CR = 0x81; //SPI Enable, Software reset
+ pSPI->SPI_CR = 0x81; //SPI Enable, Software reset - 2nd write as per errata
pSPI->SPI_CR = 0x01; //SPI Enable
pSPI->SPI_MR = 0xE0011; //Master mode, fixed select, disable decoder, PCS=1110
pSPI->SPI_CSR[0] = 0x01010311; //9bit, CPOL=1, ClockPhase=0, SCLK = 48Mhz/3 = 16MHz
@@ -179,7 +178,7 @@ static inline void release_bus(GDisplay *g) {
static inline void write_index(GDisplay *g, uint16_t index) {
(void) g;
// wait for the previous transfer to complete
- while((pSPI->SPI_SR & AT91C_SPI_TXEMPTY) == 0);
+ while(!(pSPI->SPI_SR & AT91C_SPI_TDRE));
// send the command
pSPI->SPI_TDR = index & 0xFF;
}
@@ -187,7 +186,7 @@ static inline void write_index(GDisplay *g, uint16_t index) {
static inline void write_data(GDisplay *g, uint16_t data) {
(void) g;
// wait for the previous transfer to complete
- while((pSPI->SPI_SR & AT91C_SPI_TXEMPTY) == 0);
+ while(!(pSPI->SPI_SR & AT91C_SPI_TDRE));
// send the data
pSPI->SPI_TDR = data | 0x0100;
}