topology.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /*
  2. * Copyright 2010 Tilera Corporation. All Rights Reserved.
  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, version 2.
  7. *
  8. * This program is distributed in the hope that it will be useful, but
  9. * WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
  11. * NON INFRINGEMENT. See the GNU General Public License for
  12. * more details.
  13. */
  14. #ifndef _ASM_TILE_TOPOLOGY_H
  15. #define _ASM_TILE_TOPOLOGY_H
  16. #ifdef CONFIG_NUMA
  17. #include <linux/cpumask.h>
  18. /* Mappings between logical cpu number and node number. */
  19. extern struct cpumask node_2_cpu_mask[];
  20. extern char cpu_2_node[];
  21. /* Returns the number of the node containing CPU 'cpu'. */
  22. static inline int cpu_to_node(int cpu)
  23. {
  24. return cpu_2_node[cpu];
  25. }
  26. /*
  27. * Returns the number of the node containing Node 'node'.
  28. * This architecture is flat, so it is a pretty simple function!
  29. */
  30. #define parent_node(node) (node)
  31. /* Returns a bitmask of CPUs on Node 'node'. */
  32. static inline const struct cpumask *cpumask_of_node(int node)
  33. {
  34. return &node_2_cpu_mask[node];
  35. }
  36. /* For now, use numa node -1 for global allocation. */
  37. #define pcibus_to_node(bus) ((void)(bus), -1)
  38. /* By definition, we create nodes based on online memory. */
  39. #define node_has_online_mem(nid) 1
  40. #endif /* CONFIG_NUMA */
  41. #include <asm-generic/topology.h>
  42. #ifdef CONFIG_SMP
  43. #define topology_physical_package_id(cpu) ((void)(cpu), 0)
  44. #define topology_core_id(cpu) (cpu)
  45. #define topology_core_cpumask(cpu) ((void)(cpu), cpu_online_mask)
  46. #define topology_sibling_cpumask(cpu) cpumask_of(cpu)
  47. #endif
  48. #endif /* _ASM_TILE_TOPOLOGY_H */