ibm440gx_common.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /*
  2. * arch/ppc/kernel/ibm440gx_common.h
  3. *
  4. * PPC440GX system library
  5. *
  6. * Eugene Surovegin <eugene.surovegin@zultys.com> or <ebs@ebshome.net>
  7. * Copyright (c) 2003, 2004 Zultys Technologies
  8. *
  9. * This program is free software; you can redistribute it and/or modify it
  10. * under the terms of the GNU General Public License as published by the
  11. * Free Software Foundation; either version 2 of the License, or (at your
  12. * option) any later version.
  13. *
  14. */
  15. #ifdef __KERNEL__
  16. #ifndef __PPC_SYSLIB_IBM440GX_COMMON_H
  17. #define __PPC_SYSLIB_IBM440GX_COMMON_H
  18. #ifndef __ASSEMBLY__
  19. #include <linux/config.h>
  20. #include <linux/init.h>
  21. #include <linux/seq_file.h>
  22. #include <syslib/ibm44x_common.h>
  23. /*
  24. * Please, refer to the Figure 14.1 in 440GX user manual
  25. *
  26. * if internal UART clock is used, ser_clk is ignored
  27. */
  28. void ibm440gx_get_clocks(struct ibm44x_clocks*, unsigned int sys_clk,
  29. unsigned int ser_clk) __init;
  30. /* Enable L2 cache */
  31. void ibm440gx_l2c_enable(void) __init;
  32. /* Disable L2 cache */
  33. void ibm440gx_l2c_disable(void) __init;
  34. /* Enable/disable L2 cache for a particular chip revision */
  35. void ibm440gx_l2c_setup(struct ibm44x_clocks*) __init;
  36. /* Get Ethernet Group */
  37. int ibm440gx_get_eth_grp(void) __init;
  38. /* Set Ethernet Group */
  39. void ibm440gx_set_eth_grp(int group) __init;
  40. /* Enable TAH devices */
  41. void ibm440gx_tah_enable(void) __init;
  42. /* Add L2C info to /proc/cpuinfo */
  43. int ibm440gx_show_cpuinfo(struct seq_file*);
  44. #endif /* __ASSEMBLY__ */
  45. #endif /* __PPC_SYSLIB_IBM440GX_COMMON_H */
  46. #endif /* __KERNEL__ */