summaryrefslogtreecommitdiff
path: root/firmware/drivers
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2005-04-11 11:17:31 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2005-04-11 11:17:31 +0000
commite6bc6c482951851020e0e3b36e878bdae2b61249 (patch)
tree7f87da56c08f701345691df1e0edc09f6e207bc5 /firmware/drivers
parent2c6a47270711142956e229bc23a9eb564b415f51 (diff)
downloadrockbox-e6bc6c482951851020e0e3b36e878bdae2b61249.tar.gz
rockbox-e6bc6c482951851020e0e3b36e878bdae2b61249.zip
iRiver: Implemented S/PDIF transmit power control. The optical LED is now off by default.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6268 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/drivers')
-rw-r--r--firmware/drivers/power.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/firmware/drivers/power.c b/firmware/drivers/power.c
index 3a4ae466bc..de62c7aa96 100644
--- a/firmware/drivers/power.c
+++ b/firmware/drivers/power.c
@@ -70,6 +70,9 @@ void power_init(void)
70 70
71 GPIO_ENABLE |= 0x80000000; 71 GPIO_ENABLE |= 0x80000000;
72 GPIO_FUNCTION |= 0x80000000; 72 GPIO_FUNCTION |= 0x80000000;
73#ifdef HAVE_SPDIF_POWER
74 spdif_power_enable(false);
75#endif
73#else 76#else
74#ifdef HAVE_CHARGE_CTRL 77#ifdef HAVE_CHARGE_CTRL
75 or_b(0x20, &PBIORL); /* Set charging control bit to output */ 78 or_b(0x20, &PBIORL); /* Set charging control bit to output */
@@ -128,6 +131,19 @@ void charger_enable(bool on)
128#endif 131#endif
129} 132}
130 133
134#ifdef HAVE_SPDIF_POWER
135void spdif_power_enable(bool on)
136{
137 GPIO1_FUNCTION |= 0x01000000;
138 GPIO1_ENABLE |= 0x01000000;
139
140 if(on)
141 GPIO1_OUT &= ~0x01000000;
142 else
143 GPIO1_OUT |= 0x01000000;
144}
145#endif
146
131#ifndef HAVE_MMC 147#ifndef HAVE_MMC
132void ide_power_enable(bool on) 148void ide_power_enable(bool on)
133{ 149{
@@ -261,4 +277,11 @@ void ide_power_enable(bool on)
261 (void)on; 277 (void)on;
262} 278}
263 279
280#ifdef HAVE_SPDIF_POWER
281void spdif_power_enable(bool on)
282{
283 (void)on;
284}
285#endif
286
264#endif /* SIMULATOR */ 287#endif /* SIMULATOR */