setup.c 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /*
  2. * linux/arch/sh/boards/hp6xx/hp680/setup.c
  3. *
  4. * Copyright (C) 2002 Andriy Skulysh
  5. *
  6. * May be copied or modified under the terms of the GNU General Public
  7. * License. See linux/COPYING for more information.
  8. *
  9. * Setup code for an HP680 (internal peripherials only)
  10. */
  11. #include <linux/init.h>
  12. #include <asm/io.h>
  13. #include <asm/hd64461.h>
  14. #include <asm/hp6xx/hp6xx.h>
  15. #include <asm/cpu/dac.h>
  16. const char *get_system_type(void)
  17. {
  18. return "HP6xx";
  19. }
  20. int __init platform_setup(void)
  21. {
  22. u8 v8;
  23. u16 v;
  24. v = inw(HD64461_STBCR);
  25. v |= HD64461_STBCR_SURTST | HD64461_STBCR_SIRST |
  26. HD64461_STBCR_STM1ST | HD64461_STBCR_STM0ST |
  27. HD64461_STBCR_SAFEST | HD64461_STBCR_SPC0ST |
  28. HD64461_STBCR_SMIAST | HD64461_STBCR_SAFECKE_OST |
  29. HD64461_STBCR_SAFECKE_IST;
  30. #ifndef CONFIG_HD64461_ENABLER
  31. v |= HD64461_STBCR_SPC1ST;
  32. #endif
  33. outw(v, HD64461_STBCR);
  34. v = inw(HD64461_GPADR);
  35. v |= HD64461_GPADR_SPEAKER | HD64461_GPADR_PCMCIA0;
  36. outw(v, HD64461_GPADR);
  37. outw(HD64461_PCCGCR_VCC0 | HD64461_PCCSCR_VCC1, HD64461_PCC0GCR);
  38. #ifndef CONFIG_HD64461_ENABLER
  39. outw(HD64461_PCCGCR_VCC0 | HD64461_PCCSCR_VCC1, HD64461_PCC1GCR);
  40. #endif
  41. sh_dac_output(0, DAC_SPEAKER_VOLUME);
  42. sh_dac_disable(DAC_SPEAKER_VOLUME);
  43. v8 = ctrl_inb(DACR);
  44. v8 &= ~DACR_DAE;
  45. ctrl_outb(v8,DACR);
  46. return 0;
  47. }