summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
Diffstat (limited to 'firmware')
-rw-r--r--firmware/drivers/lcd-ipod.c4
-rw-r--r--firmware/export/system.h2
-rw-r--r--firmware/system.c6
3 files changed, 9 insertions, 3 deletions
diff --git a/firmware/drivers/lcd-ipod.c b/firmware/drivers/lcd-ipod.c
index 5178b1b9b2..0ff22ab9b5 100644
--- a/firmware/drivers/lcd-ipod.c
+++ b/firmware/drivers/lcd-ipod.c
@@ -30,8 +30,6 @@
30#include "system.h" 30#include "system.h"
31 31
32/*** definitions ***/ 32/*** definitions ***/
33#define IPOD_HW_REVISION (*((volatile unsigned long*)0x00002084))
34
35#define IPOD_LCD_BASE 0x70008a0c 33#define IPOD_LCD_BASE 0x70008a0c
36#define IPOD_LCD_BUSY_MASK 0x80000000 34#define IPOD_LCD_BUSY_MASK 0x80000000
37 35
@@ -129,7 +127,7 @@ void lcd_roll(int lines)
129void lcd_init_device(void) 127void lcd_init_device(void)
130{ 128{
131#if CONFIG_LCD == LCD_IPODCOLOR 129#if CONFIG_LCD == LCD_IPODCOLOR
132 if (IPOD_HW_REVISION == 0x60000) { 130 if (ipod_hw_rev == 0x60000) {
133 lcd_type = 0; 131 lcd_type = 0;
134 } else { 132 } else {
135 int gpio_a01, gpio_a04; 133 int gpio_a01, gpio_a04;
diff --git a/firmware/export/system.h b/firmware/export/system.h
index 0434425ffd..b5f4bbf2db 100644
--- a/firmware/export/system.h
+++ b/firmware/export/system.h
@@ -36,6 +36,8 @@ extern long cpu_frequency;
36#define outb(a,b) (*(volatile unsigned char *) (b) = (a)) 36#define outb(a,b) (*(volatile unsigned char *) (b) = (a))
37#define inw(a) (*(volatile unsigned short *) (a)) 37#define inw(a) (*(volatile unsigned short *) (a))
38#define outw(a,b) (*(volatile unsigned short *) (b) = (a)) 38#define outw(a,b) (*(volatile unsigned short *) (b) = (a))
39extern unsigned int ipod_hw_rev;
40
39static inline void udelay(unsigned usecs) 41static inline void udelay(unsigned usecs)
40{ 42{
41 unsigned start = inl(0x60005010); 43 unsigned start = inl(0x60005010);
diff --git a/firmware/system.c b/firmware/system.c
index bc9f9de973..1ef5fda290 100644
--- a/firmware/system.c
+++ b/firmware/system.c
@@ -1140,6 +1140,8 @@ void UIE(unsigned int pc, unsigned int num)
1140extern void TIMER1(void); 1140extern void TIMER1(void);
1141extern void ipod_4g_button_int(void); 1141extern void ipod_4g_button_int(void);
1142 1142
1143unsigned int ipod_hw_rev;
1144
1143void irq(void) 1145void irq(void)
1144{ 1146{
1145 if (CPU_INT_STAT & TIMER1_MASK) 1147 if (CPU_INT_STAT & TIMER1_MASK)
@@ -1198,6 +1200,10 @@ static void ipod_set_cpu_speed(void)
1198void system_init(void) 1200void system_init(void)
1199{ 1201{
1200#ifndef BOOTLOADER 1202#ifndef BOOTLOADER
1203 /* The hw revision is written to the last 4 bytes of SDRAM by the
1204 bootloader - we save it before Rockbox overwrites it. */
1205 ipod_hw_rev = (*((volatile unsigned long*)(0x01fffffc)));
1206
1201 /* disable all irqs */ 1207 /* disable all irqs */
1202 outl(-1, 0x60001138); 1208 outl(-1, 0x60001138);
1203 outl(-1, 0x60001128); 1209 outl(-1, 0x60001128);