powertv_setup.c 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330
  1. /*
  2. * Carsten Langgaard, carstenl@mips.com
  3. * Copyright (C) 2000 MIPS Technologies, Inc. All rights reserved.
  4. * Portions copyright (C) 2009 Cisco Systems, Inc.
  5. *
  6. * This program is free software; you can distribute it and/or modify it
  7. * under the terms of the GNU General Public License (Version 2) as
  8. * published by the Free Software Foundation.
  9. *
  10. * This program is distributed in the hope it will be useful, but WITHOUT
  11. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  12. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
  13. * for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License along
  16. * with this program; if not, write to the Free Software Foundation, Inc.,
  17. * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
  18. */
  19. #include <linux/init.h>
  20. #include <linux/sched.h>
  21. #include <linux/ioport.h>
  22. #include <linux/pci.h>
  23. #include <linux/screen_info.h>
  24. #include <linux/notifier.h>
  25. #include <linux/etherdevice.h>
  26. #include <linux/if_ether.h>
  27. #include <linux/ctype.h>
  28. #include <linux/cpu.h>
  29. #include <asm/bootinfo.h>
  30. #include <asm/irq.h>
  31. #include <asm/mips-boards/generic.h>
  32. #include <asm/mips-boards/prom.h>
  33. #include <asm/dma.h>
  34. #include <linux/time.h>
  35. #include <asm/traps.h>
  36. #include <asm/asm-offsets.h>
  37. #include "reset.h"
  38. #define VAL(n) STR(n)
  39. /*
  40. * Macros for loading addresses and storing registers:
  41. * PTR_LA Load the address into a register
  42. * LONG_S Store the full width of the given register.
  43. * LONG_L Load the full width of the given register
  44. * PTR_ADDIU Add a constant value to a register used as a pointer
  45. * REG_SIZE Number of 8-bit bytes in a full width register
  46. */
  47. #ifdef CONFIG_64BIT
  48. #warning TODO: 64-bit code needs to be verified
  49. #define PTR_LA "dla "
  50. #define LONG_S "sd "
  51. #define LONG_L "ld "
  52. #define PTR_ADDIU "daddiu "
  53. #define REG_SIZE "8" /* In bytes */
  54. #endif
  55. #ifdef CONFIG_32BIT
  56. #define PTR_LA "la "
  57. #define LONG_S "sw "
  58. #define LONG_L "lw "
  59. #define PTR_ADDIU "addiu "
  60. #define REG_SIZE "4" /* In bytes */
  61. #endif
  62. static void register_panic_notifier(void);
  63. static int panic_handler(struct notifier_block *notifier_block,
  64. unsigned long event, void *cause_string);
  65. const char *get_system_type(void)
  66. {
  67. return "PowerTV";
  68. }
  69. void __init plat_mem_setup(void)
  70. {
  71. panic_on_oops = 1;
  72. register_panic_notifier();
  73. #if 0
  74. mips_pcibios_init();
  75. #endif
  76. mips_reboot_setup();
  77. }
  78. /*
  79. * Install a panic notifier for platform-specific diagnostics
  80. */
  81. static void register_panic_notifier()
  82. {
  83. static struct notifier_block panic_notifier = {
  84. .notifier_call = panic_handler,
  85. .next = NULL,
  86. .priority = INT_MAX
  87. };
  88. atomic_notifier_chain_register(&panic_notifier_list, &panic_notifier);
  89. }
  90. static int panic_handler(struct notifier_block *notifier_block,
  91. unsigned long event, void *cause_string)
  92. {
  93. struct pt_regs my_regs;
  94. /* Save all of the registers */
  95. {
  96. unsigned long at, v0, v1; /* Must be on the stack */
  97. /* Start by saving $at and v0 on the stack. We use $at
  98. * ourselves, but it looks like the compiler may use v0 or v1
  99. * to load the address of the pt_regs structure. We'll come
  100. * back later to store the registers in the pt_regs
  101. * structure. */
  102. __asm__ __volatile__ (
  103. ".set noat\n"
  104. LONG_S "$at, %[at]\n"
  105. LONG_S "$2, %[v0]\n"
  106. LONG_S "$3, %[v1]\n"
  107. :
  108. [at] "=m" (at),
  109. [v0] "=m" (v0),
  110. [v1] "=m" (v1)
  111. :
  112. : "at"
  113. );
  114. __asm__ __volatile__ (
  115. ".set noat\n"
  116. "move $at, %[pt_regs]\n"
  117. /* Argument registers */
  118. LONG_S "$4, " VAL(PT_R4) "($at)\n"
  119. LONG_S "$5, " VAL(PT_R5) "($at)\n"
  120. LONG_S "$6, " VAL(PT_R6) "($at)\n"
  121. LONG_S "$7, " VAL(PT_R7) "($at)\n"
  122. /* Temporary regs */
  123. LONG_S "$8, " VAL(PT_R8) "($at)\n"
  124. LONG_S "$9, " VAL(PT_R9) "($at)\n"
  125. LONG_S "$10, " VAL(PT_R10) "($at)\n"
  126. LONG_S "$11, " VAL(PT_R11) "($at)\n"
  127. LONG_S "$12, " VAL(PT_R12) "($at)\n"
  128. LONG_S "$13, " VAL(PT_R13) "($at)\n"
  129. LONG_S "$14, " VAL(PT_R14) "($at)\n"
  130. LONG_S "$15, " VAL(PT_R15) "($at)\n"
  131. /* "Saved" registers */
  132. LONG_S "$16, " VAL(PT_R16) "($at)\n"
  133. LONG_S "$17, " VAL(PT_R17) "($at)\n"
  134. LONG_S "$18, " VAL(PT_R18) "($at)\n"
  135. LONG_S "$19, " VAL(PT_R19) "($at)\n"
  136. LONG_S "$20, " VAL(PT_R20) "($at)\n"
  137. LONG_S "$21, " VAL(PT_R21) "($at)\n"
  138. LONG_S "$22, " VAL(PT_R22) "($at)\n"
  139. LONG_S "$23, " VAL(PT_R23) "($at)\n"
  140. /* Add'l temp regs */
  141. LONG_S "$24, " VAL(PT_R24) "($at)\n"
  142. LONG_S "$25, " VAL(PT_R25) "($at)\n"
  143. /* Kernel temp regs */
  144. LONG_S "$26, " VAL(PT_R26) "($at)\n"
  145. LONG_S "$27, " VAL(PT_R27) "($at)\n"
  146. /* Global pointer, stack pointer, frame pointer and
  147. * return address */
  148. LONG_S "$gp, " VAL(PT_R28) "($at)\n"
  149. LONG_S "$sp, " VAL(PT_R29) "($at)\n"
  150. LONG_S "$fp, " VAL(PT_R30) "($at)\n"
  151. LONG_S "$ra, " VAL(PT_R31) "($at)\n"
  152. /* Now we can get the $at and v0 registers back and
  153. * store them */
  154. LONG_L "$8, %[at]\n"
  155. LONG_S "$8, " VAL(PT_R1) "($at)\n"
  156. LONG_L "$8, %[v0]\n"
  157. LONG_S "$8, " VAL(PT_R2) "($at)\n"
  158. LONG_L "$8, %[v1]\n"
  159. LONG_S "$8, " VAL(PT_R3) "($at)\n"
  160. :
  161. :
  162. [at] "m" (at),
  163. [v0] "m" (v0),
  164. [v1] "m" (v1),
  165. [pt_regs] "r" (&my_regs)
  166. : "at", "t0"
  167. );
  168. /* Set the current EPC value to be the current location in this
  169. * function */
  170. __asm__ __volatile__ (
  171. ".set noat\n"
  172. "1:\n"
  173. PTR_LA "$at, 1b\n"
  174. LONG_S "$at, %[cp0_epc]\n"
  175. :
  176. [cp0_epc] "=m" (my_regs.cp0_epc)
  177. :
  178. : "at"
  179. );
  180. my_regs.cp0_cause = read_c0_cause();
  181. my_regs.cp0_status = read_c0_status();
  182. }
  183. #ifdef CONFIG_DIAGNOSTICS
  184. failure_report((char *) cause_string,
  185. have_die_regs ? &die_regs : &my_regs);
  186. have_die_regs = false;
  187. #else
  188. pr_crit("I'm feeling a bit sleepy. hmmmmm... perhaps a nap would... "
  189. "zzzz... \n");
  190. #endif
  191. return NOTIFY_DONE;
  192. }
  193. /* Information about the RF MAC address, if one was supplied on the
  194. * command line. */
  195. static bool have_rfmac;
  196. static u8 rfmac[ETH_ALEN];
  197. static int rfmac_param(char *p)
  198. {
  199. u8 *q;
  200. bool is_high_nibble;
  201. int c;
  202. /* Skip a leading "0x", if present */
  203. if (*p == '0' && *(p+1) == 'x')
  204. p += 2;
  205. q = rfmac;
  206. is_high_nibble = true;
  207. for (c = (unsigned char) *p++;
  208. isxdigit(c) && q - rfmac < ETH_ALEN;
  209. c = (unsigned char) *p++) {
  210. int nibble;
  211. nibble = (isdigit(c) ? (c - '0') :
  212. (isupper(c) ? c - 'A' + 10 : c - 'a' + 10));
  213. if (is_high_nibble)
  214. *q = nibble << 4;
  215. else
  216. *q++ |= nibble;
  217. is_high_nibble = !is_high_nibble;
  218. }
  219. /* If we parsed all the way to the end of the parameter value and
  220. * parsed all ETH_ALEN bytes, we have a usable RF MAC address */
  221. have_rfmac = (c == '\0' && q - rfmac == ETH_ALEN);
  222. return 0;
  223. }
  224. early_param("rfmac", rfmac_param);
  225. /*
  226. * Generate an Ethernet MAC address that has a good chance of being unique.
  227. * @addr: Pointer to six-byte array containing the Ethernet address
  228. * Generates an Ethernet MAC address that is highly likely to be unique for
  229. * this particular system on a network with other systems of the same type.
  230. *
  231. * The problem we are solving is that, when random_ether_addr() is used to
  232. * generate MAC addresses at startup, there isn't much entropy for the random
  233. * number generator to use and the addresses it produces are fairly likely to
  234. * be the same as those of other identical systems on the same local network.
  235. * This is true even for relatively small numbers of systems (for the reason
  236. * why, see the Wikipedia entry for "Birthday problem" at:
  237. * http://en.wikipedia.org/wiki/Birthday_problem
  238. *
  239. * The good news is that we already have a MAC address known to be unique, the
  240. * RF MAC address. The bad news is that this address is already in use on the
  241. * RF interface. Worse, the obvious trick, taking the RF MAC address and
  242. * turning on the locally managed bit, has already been used for other devices.
  243. * Still, this does give us something to work with.
  244. *
  245. * The approach we take is:
  246. * 1. If we can't get the RF MAC Address, just call random_ether_addr.
  247. * 2. Use the 24-bit NIC-specific bits of the RF MAC address as the last 24
  248. * bits of the new address. This is very likely to be unique, except for
  249. * the current box.
  250. * 3. To avoid using addresses already on the current box, we set the top
  251. * six bits of the address with a value different from any currently
  252. * registered Scientific Atlanta organizationally unique identifyer
  253. * (OUI). This avoids duplication with any addresses on the system that
  254. * were generated from valid Scientific Atlanta-registered address by
  255. * simply flipping the locally managed bit.
  256. * 4. We aren't generating a multicast address, so we leave the multicast
  257. * bit off. Since we aren't using a registered address, we have to set
  258. * the locally managed bit.
  259. * 5. We then randomly generate the remaining 16-bits. This does two
  260. * things:
  261. * a. It allows us to call this function for more than one device
  262. * in this system
  263. * b. It ensures that things will probably still work even if
  264. * some device on the device network has a locally managed
  265. * address that matches the top six bits from step 2.
  266. */
  267. void platform_random_ether_addr(u8 addr[ETH_ALEN])
  268. {
  269. const int num_random_bytes = 2;
  270. const unsigned char non_sciatl_oui_bits = 0xc0u;
  271. const unsigned char mac_addr_locally_managed = (1 << 1);
  272. if (!have_rfmac) {
  273. pr_warning("rfmac not available on command line; "
  274. "generating random MAC address\n");
  275. random_ether_addr(addr);
  276. }
  277. else {
  278. int i;
  279. /* Set the first byte to something that won't match a Scientific
  280. * Atlanta OUI, is locally managed, and isn't a multicast
  281. * address */
  282. addr[0] = non_sciatl_oui_bits | mac_addr_locally_managed;
  283. /* Get some bytes of random address information */
  284. get_random_bytes(&addr[1], num_random_bytes);
  285. /* Copy over the NIC-specific bits of the RF MAC address */
  286. for (i = 1 + num_random_bytes; i < ETH_ALEN; i++)
  287. addr[i] = rfmac[i];
  288. }
  289. }