Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 36229
b: refs/heads/master
c: 4bcac20
h: refs/heads/master
i:
  36227: 609930e
v: v3
  • Loading branch information
Andriy Skulysh authored and Paul Mundt committed Sep 27, 2006
1 parent 7b0969a commit b839e4f
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 35 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e4c2cfee5d5cf3e4c16b423be23551aeddf2717b
refs/heads/master: 4bcac20a7a01d49dffb5e88a8140efa34927c383
2 changes: 1 addition & 1 deletion trunk/arch/sh/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ incdir-$(CONFIG_SH_SOLUTION_ENGINE) := se
incdir-$(CONFIG_SH_7751_SOLUTION_ENGINE) := se7751
incdir-$(CONFIG_SH_7300_SOLUTION_ENGINE) := se7300
incdir-$(CONFIG_SH_73180_SOLUTION_ENGINE) := se73180
incdir-$(CONFIG_SH_HP600) := hp6xx
incdir-$(CONFIG_SH_HP6XX) := hp6xx

ifneq ($(machdir-y),)
core-y += arch/sh/boards/$(machdir-y)/
Expand Down
15 changes: 1 addition & 14 deletions trunk/drivers/video/hitfb.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,8 @@
#include <asm/io.h>
#include <asm/hd64461/hd64461.h>

#ifdef MACH_HP600
#include <asm/cpu/dac.h>
#include <asm/hp6xx/hp6xx.h>
#endif

#define WIDTH 640

Expand Down Expand Up @@ -192,12 +190,6 @@ int hitfb_blank(int blank_mode, struct fb_info *info)
unsigned short v;

if (blank_mode) {
#ifdef MACH_HP600
sh_dac_disable(DAC_LCD_BRIGHTNESS);
v = fb_readw(HD64461_GPBDR);
v |= HD64461_GPBDR_LCDOFF;
fb_writew(v, HD64461_GPBDR);
#endif
v = fb_readw(HD64461_LDR1);
v &= ~HD64461_LDR1_DON;
fb_writew(v, HD64461_LDR1);
Expand All @@ -213,12 +205,7 @@ int hitfb_blank(int blank_mode, struct fb_info *info)
v = fb_readw(HD64461_STBCR);
v &= ~HD64461_STBCR_SLCDST;
fb_writew(v, HD64461_STBCR);
#ifdef MACH_HP600
sh_dac_enable(DAC_LCD_BRIGHTNESS);
v = fb_readw(HD64461_GPBDR);
v &= ~HD64461_GPBDR_LCDOFF;
fb_writew(v, HD64461_GPBDR);
#endif

v = fb_readw(HD64461_LDR1);
v |= HD64461_LDR1_DON;
fb_writew(v, HD64461_LDR1);
Expand Down
34 changes: 15 additions & 19 deletions trunk/sound/oss/sh_dac_audio.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,15 @@
#include <linux/fs.h>
#include <linux/sound.h>
#include <linux/soundcard.h>
#include <linux/interrupt.h>
#include <asm/io.h>
#include <asm/uaccess.h>
#include <asm/irq.h>
#include <asm/delay.h>
#include <linux/interrupt.h>

#include <asm/cpu/dac.h>

#ifdef MACH_HP600
#include <asm/machvec.h>
#include <asm/hp6xx/hp6xx.h>
#include <asm/hd64461/hd64461.h>
#endif

#define MODNAME "sh_dac_audio"

Expand Down Expand Up @@ -71,26 +68,25 @@ static void dac_audio_sync(void)

static void dac_audio_start(void)
{
#ifdef MACH_HP600
u16 v;
v = inw(HD64461_GPADR);
v &= ~HD64461_GPADR_SPEAKER;
outw(v, HD64461_GPADR);
#endif
if (mach_is_hp6xx()) {
u16 v = inw(HD64461_GPADR);
v &= ~HD64461_GPADR_SPEAKER;
outw(v, HD64461_GPADR);
}

sh_dac_enable(CONFIG_SOUND_SH_DAC_AUDIO_CHANNEL);
ctrl_outw(TMU1_TCR_INIT, TMU1_TCR);
}
static void dac_audio_stop(void)
{
#ifdef MACH_HP600
u16 v;
#endif
dac_audio_stop_timer();
#ifdef MACH_HP600
v = inw(HD64461_GPADR);
v |= HD64461_GPADR_SPEAKER;
outw(v, HD64461_GPADR);
#endif

if (mach_is_hp6xx()) {
u16 v = inw(HD64461_GPADR);
v |= HD64461_GPADR_SPEAKER;
outw(v, HD64461_GPADR);
}

sh_dac_disable(CONFIG_SOUND_SH_DAC_AUDIO_CHANNEL);
}

Expand Down

0 comments on commit b839e4f

Please sign in to comment.