diu.c 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /*
  2. * Copyright 2008 Freescale Semiconductor, Inc.
  3. * York Sun <yorksun@freescale.com>
  4. *
  5. * FSL DIU Framebuffer driver
  6. *
  7. * See file CREDITS for list of people who contributed to this
  8. * project.
  9. *
  10. * This program is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU General Public License as
  12. * published by the Free Software Foundation; either version 2 of
  13. * the License, or (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software
  22. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  23. * MA 02111-1307 USA
  24. */
  25. #include <common.h>
  26. #include <command.h>
  27. #include <asm/io.h>
  28. #include <fsl_diu_fb.h>
  29. DECLARE_GLOBAL_DATA_PTR;
  30. void diu_set_pixel_clock(unsigned int pixclock)
  31. {
  32. volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
  33. volatile clk512x_t *clk = &immap->clk;
  34. volatile unsigned int *clkdvdr = &clk->scfr[0];
  35. unsigned long speed_ccb, temp, pixval;
  36. speed_ccb = get_bus_freq(0) * 4;
  37. temp = 1000000000/pixclock;
  38. temp *= 1000;
  39. pixval = speed_ccb / temp;
  40. debug("DIU pixval = %lu\n", pixval);
  41. /* Modify PXCLK in GUTS CLKDVDR */
  42. debug("DIU: Current value of CLKDVDR = 0x%08x\n", in_be32(clkdvdr));
  43. temp = in_be32(clkdvdr) & 0xFFFFFF00;
  44. out_be32(clkdvdr, temp | (pixval & 0xFF));
  45. debug("DIU: Modified value of CLKDVDR = 0x%08x\n", in_be32(clkdvdr));
  46. }
  47. int platform_diu_init(unsigned int xres, unsigned int yres, const char *port)
  48. {
  49. unsigned int pixel_format = 0x88883316;
  50. debug("mpc5121_diu_init\n");
  51. return fsl_diu_init(xres, yres, pixel_format, 0);
  52. }