csrc-bcm1480.c 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /*
  2. * Copyright (C) 2000,2001,2004 Broadcom Corporation
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License
  6. * as published by the Free Software Foundation; either version 2
  7. * of the License, or (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  17. */
  18. #include <linux/clocksource.h>
  19. #include <asm/addrspace.h>
  20. #include <asm/io.h>
  21. #include <asm/time.h>
  22. #include <asm/sibyte/bcm1480_regs.h>
  23. #include <asm/sibyte/sb1250_regs.h>
  24. #include <asm/sibyte/bcm1480_int.h>
  25. #include <asm/sibyte/bcm1480_scd.h>
  26. #include <asm/sibyte/sb1250.h>
  27. static cycle_t bcm1480_hpt_read(struct clocksource *cs)
  28. {
  29. return (cycle_t) __raw_readq(IOADDR(A_SCD_ZBBUS_CYCLE_COUNT));
  30. }
  31. struct clocksource bcm1480_clocksource = {
  32. .name = "zbbus-cycles",
  33. .rating = 200,
  34. .read = bcm1480_hpt_read,
  35. .mask = CLOCKSOURCE_MASK(64),
  36. .flags = CLOCK_SOURCE_IS_CONTINUOUS,
  37. };
  38. void __init sb1480_clocksource_init(void)
  39. {
  40. struct clocksource *cs = &bcm1480_clocksource;
  41. unsigned int plldiv;
  42. unsigned long zbbus;
  43. plldiv = G_BCM1480_SYS_PLL_DIV(__raw_readq(IOADDR(A_SCD_SYSTEM_CFG)));
  44. zbbus = ((plldiv >> 1) * 50000000) + ((plldiv & 1) * 25000000);
  45. clocksource_register_hz(cs, zbbus);
  46. }