vc3xxx_data.c 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*
  2. * OMAP3 Voltage Controller (VC) data
  3. *
  4. * Copyright (C) 2007, 2010 Texas Instruments, Inc.
  5. * Rajendra Nayak <rnayak@ti.com>
  6. * Lesly A M <x0080970@ti.com>
  7. * Thara Gopinath <thara@ti.com>
  8. *
  9. * Copyright (C) 2008, 2011 Nokia Corporation
  10. * Kalle Jokiniemi
  11. * Paul Walmsley
  12. *
  13. * This program is free software; you can redistribute it and/or modify
  14. * it under the terms of the GNU General Public License version 2 as
  15. * published by the Free Software Foundation.
  16. */
  17. #include <linux/io.h>
  18. #include <linux/err.h>
  19. #include <linux/init.h>
  20. #include <plat/common.h>
  21. #include "prm-regbits-34xx.h"
  22. #include "voltage.h"
  23. #include "vc.h"
  24. /*
  25. * VC data common to 34xx/36xx chips
  26. * XXX This stuff presumably belongs in the vc3xxx.c or vc.c file.
  27. */
  28. static struct omap_vc_common_data omap3_vc_common = {
  29. .prm_mod = OMAP3430_GR_MOD,
  30. .smps_sa_reg = OMAP3_PRM_VC_SMPS_SA_OFFSET,
  31. .smps_volra_reg = OMAP3_PRM_VC_SMPS_VOL_RA_OFFSET,
  32. .bypass_val_reg = OMAP3_PRM_VC_BYPASS_VAL_OFFSET,
  33. .data_shift = OMAP3430_DATA_SHIFT,
  34. .slaveaddr_shift = OMAP3430_SLAVEADDR_SHIFT,
  35. .regaddr_shift = OMAP3430_REGADDR_SHIFT,
  36. .valid = OMAP3430_VALID_MASK,
  37. .cmd_on_shift = OMAP3430_VC_CMD_ON_SHIFT,
  38. .cmd_on_mask = OMAP3430_VC_CMD_ON_MASK,
  39. .cmd_onlp_shift = OMAP3430_VC_CMD_ONLP_SHIFT,
  40. .cmd_ret_shift = OMAP3430_VC_CMD_RET_SHIFT,
  41. .cmd_off_shift = OMAP3430_VC_CMD_OFF_SHIFT,
  42. };
  43. struct omap_vc_instance_data omap3_vc1_data = {
  44. .vc_common = &omap3_vc_common,
  45. .cmdval_reg = OMAP3_PRM_VC_CMD_VAL_0_OFFSET,
  46. .smps_sa_shift = OMAP3430_PRM_VC_SMPS_SA_SA0_SHIFT,
  47. .smps_sa_mask = OMAP3430_PRM_VC_SMPS_SA_SA0_MASK,
  48. .smps_volra_shift = OMAP3430_VOLRA0_SHIFT,
  49. .smps_volra_mask = OMAP3430_VOLRA0_MASK,
  50. };
  51. struct omap_vc_instance_data omap3_vc2_data = {
  52. .vc_common = &omap3_vc_common,
  53. .cmdval_reg = OMAP3_PRM_VC_CMD_VAL_1_OFFSET,
  54. .smps_sa_shift = OMAP3430_PRM_VC_SMPS_SA_SA1_SHIFT,
  55. .smps_sa_mask = OMAP3430_PRM_VC_SMPS_SA_SA1_MASK,
  56. .smps_volra_shift = OMAP3430_VOLRA1_SHIFT,
  57. .smps_volra_mask = OMAP3430_VOLRA1_MASK,
  58. };