ts78xx-setup.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626
  1. /*
  2. * arch/arm/mach-orion5x/ts78xx-setup.c
  3. *
  4. * Maintainer: Alexander Clouter <alex@digriz.org.uk>
  5. *
  6. * This file is licensed under the terms of the GNU General Public
  7. * License version 2. This program is licensed "as is" without any
  8. * warranty of any kind, whether express or implied.
  9. */
  10. #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
  11. #include <linux/kernel.h>
  12. #include <linux/init.h>
  13. #include <linux/sysfs.h>
  14. #include <linux/platform_device.h>
  15. #include <linux/mv643xx_eth.h>
  16. #include <linux/ata_platform.h>
  17. #include <linux/platform_data/rtc-m48t86.h>
  18. #include <linux/mtd/nand.h>
  19. #include <linux/mtd/partitions.h>
  20. #include <linux/timeriomem-rng.h>
  21. #include <asm/mach-types.h>
  22. #include <asm/mach/arch.h>
  23. #include <asm/mach/map.h>
  24. #include "common.h"
  25. #include "mpp.h"
  26. #include "orion5x.h"
  27. #include "ts78xx-fpga.h"
  28. /*****************************************************************************
  29. * TS-78xx Info
  30. ****************************************************************************/
  31. /*
  32. * FPGA - lives where the PCI bus would be at ORION5X_PCI_MEM_PHYS_BASE
  33. */
  34. #define TS78XX_FPGA_REGS_PHYS_BASE 0xe8000000
  35. #define TS78XX_FPGA_REGS_VIRT_BASE IOMEM(0xff900000)
  36. #define TS78XX_FPGA_REGS_SIZE SZ_1M
  37. static struct ts78xx_fpga_data ts78xx_fpga = {
  38. .id = 0,
  39. .state = 1,
  40. /* .supports = ... - populated by ts78xx_fpga_supports() */
  41. };
  42. /*****************************************************************************
  43. * I/O Address Mapping
  44. ****************************************************************************/
  45. static struct map_desc ts78xx_io_desc[] __initdata = {
  46. {
  47. .virtual = (unsigned long)TS78XX_FPGA_REGS_VIRT_BASE,
  48. .pfn = __phys_to_pfn(TS78XX_FPGA_REGS_PHYS_BASE),
  49. .length = TS78XX_FPGA_REGS_SIZE,
  50. .type = MT_DEVICE,
  51. },
  52. };
  53. static void __init ts78xx_map_io(void)
  54. {
  55. orion5x_map_io();
  56. iotable_init(ts78xx_io_desc, ARRAY_SIZE(ts78xx_io_desc));
  57. }
  58. /*****************************************************************************
  59. * Ethernet
  60. ****************************************************************************/
  61. static struct mv643xx_eth_platform_data ts78xx_eth_data = {
  62. .phy_addr = MV643XX_ETH_PHY_ADDR(0),
  63. };
  64. /*****************************************************************************
  65. * SATA
  66. ****************************************************************************/
  67. static struct mv_sata_platform_data ts78xx_sata_data = {
  68. .n_ports = 2,
  69. };
  70. /*****************************************************************************
  71. * RTC M48T86 - nicked^Wborrowed from arch/arm/mach-ep93xx/ts72xx.c
  72. ****************************************************************************/
  73. #define TS_RTC_CTRL (TS78XX_FPGA_REGS_VIRT_BASE + 0x808)
  74. #define TS_RTC_DATA (TS78XX_FPGA_REGS_VIRT_BASE + 0x80c)
  75. static unsigned char ts78xx_ts_rtc_readbyte(unsigned long addr)
  76. {
  77. writeb(addr, TS_RTC_CTRL);
  78. return readb(TS_RTC_DATA);
  79. }
  80. static void ts78xx_ts_rtc_writebyte(unsigned char value, unsigned long addr)
  81. {
  82. writeb(addr, TS_RTC_CTRL);
  83. writeb(value, TS_RTC_DATA);
  84. }
  85. static struct m48t86_ops ts78xx_ts_rtc_ops = {
  86. .readbyte = ts78xx_ts_rtc_readbyte,
  87. .writebyte = ts78xx_ts_rtc_writebyte,
  88. };
  89. static struct platform_device ts78xx_ts_rtc_device = {
  90. .name = "rtc-m48t86",
  91. .id = -1,
  92. .dev = {
  93. .platform_data = &ts78xx_ts_rtc_ops,
  94. },
  95. .num_resources = 0,
  96. };
  97. /*
  98. * TS uses some of the user storage space on the RTC chip so see if it is
  99. * present; as it's an optional feature at purchase time and not all boards
  100. * will have it present
  101. *
  102. * I've used the method TS use in their rtc7800.c example for the detection
  103. *
  104. * TODO: track down a guinea pig without an RTC to see if we can work out a
  105. * better RTC detection routine
  106. */
  107. static int ts78xx_ts_rtc_load(void)
  108. {
  109. int rc;
  110. unsigned char tmp_rtc0, tmp_rtc1;
  111. tmp_rtc0 = ts78xx_ts_rtc_readbyte(126);
  112. tmp_rtc1 = ts78xx_ts_rtc_readbyte(127);
  113. ts78xx_ts_rtc_writebyte(0x00, 126);
  114. ts78xx_ts_rtc_writebyte(0x55, 127);
  115. if (ts78xx_ts_rtc_readbyte(127) == 0x55) {
  116. ts78xx_ts_rtc_writebyte(0xaa, 127);
  117. if (ts78xx_ts_rtc_readbyte(127) == 0xaa
  118. && ts78xx_ts_rtc_readbyte(126) == 0x00) {
  119. ts78xx_ts_rtc_writebyte(tmp_rtc0, 126);
  120. ts78xx_ts_rtc_writebyte(tmp_rtc1, 127);
  121. if (ts78xx_fpga.supports.ts_rtc.init == 0) {
  122. rc = platform_device_register(&ts78xx_ts_rtc_device);
  123. if (!rc)
  124. ts78xx_fpga.supports.ts_rtc.init = 1;
  125. } else
  126. rc = platform_device_add(&ts78xx_ts_rtc_device);
  127. if (rc)
  128. pr_info("RTC could not be registered: %d\n",
  129. rc);
  130. return rc;
  131. }
  132. }
  133. pr_info("RTC not found\n");
  134. return -ENODEV;
  135. };
  136. static void ts78xx_ts_rtc_unload(void)
  137. {
  138. platform_device_del(&ts78xx_ts_rtc_device);
  139. }
  140. /*****************************************************************************
  141. * NAND Flash
  142. ****************************************************************************/
  143. #define TS_NAND_CTRL (TS78XX_FPGA_REGS_VIRT_BASE + 0x800) /* VIRT */
  144. #define TS_NAND_DATA (TS78XX_FPGA_REGS_PHYS_BASE + 0x804) /* PHYS */
  145. /*
  146. * hardware specific access to control-lines
  147. *
  148. * ctrl:
  149. * NAND_NCE: bit 0 -> bit 2
  150. * NAND_CLE: bit 1 -> bit 1
  151. * NAND_ALE: bit 2 -> bit 0
  152. */
  153. static void ts78xx_ts_nand_cmd_ctrl(struct mtd_info *mtd, int cmd,
  154. unsigned int ctrl)
  155. {
  156. struct nand_chip *this = mtd_to_nand(mtd);
  157. if (ctrl & NAND_CTRL_CHANGE) {
  158. unsigned char bits;
  159. bits = (ctrl & NAND_NCE) << 2;
  160. bits |= ctrl & NAND_CLE;
  161. bits |= (ctrl & NAND_ALE) >> 2;
  162. writeb((readb(TS_NAND_CTRL) & ~0x7) | bits, TS_NAND_CTRL);
  163. }
  164. if (cmd != NAND_CMD_NONE)
  165. writeb(cmd, this->IO_ADDR_W);
  166. }
  167. static int ts78xx_ts_nand_dev_ready(struct mtd_info *mtd)
  168. {
  169. return readb(TS_NAND_CTRL) & 0x20;
  170. }
  171. static void ts78xx_ts_nand_write_buf(struct mtd_info *mtd,
  172. const uint8_t *buf, int len)
  173. {
  174. struct nand_chip *chip = mtd_to_nand(mtd);
  175. void __iomem *io_base = chip->IO_ADDR_W;
  176. unsigned long off = ((unsigned long)buf & 3);
  177. int sz;
  178. if (off) {
  179. sz = min_t(int, 4 - off, len);
  180. writesb(io_base, buf, sz);
  181. buf += sz;
  182. len -= sz;
  183. }
  184. sz = len >> 2;
  185. if (sz) {
  186. u32 *buf32 = (u32 *)buf;
  187. writesl(io_base, buf32, sz);
  188. buf += sz << 2;
  189. len -= sz << 2;
  190. }
  191. if (len)
  192. writesb(io_base, buf, len);
  193. }
  194. static void ts78xx_ts_nand_read_buf(struct mtd_info *mtd,
  195. uint8_t *buf, int len)
  196. {
  197. struct nand_chip *chip = mtd_to_nand(mtd);
  198. void __iomem *io_base = chip->IO_ADDR_R;
  199. unsigned long off = ((unsigned long)buf & 3);
  200. int sz;
  201. if (off) {
  202. sz = min_t(int, 4 - off, len);
  203. readsb(io_base, buf, sz);
  204. buf += sz;
  205. len -= sz;
  206. }
  207. sz = len >> 2;
  208. if (sz) {
  209. u32 *buf32 = (u32 *)buf;
  210. readsl(io_base, buf32, sz);
  211. buf += sz << 2;
  212. len -= sz << 2;
  213. }
  214. if (len)
  215. readsb(io_base, buf, len);
  216. }
  217. static struct mtd_partition ts78xx_ts_nand_parts[] = {
  218. {
  219. .name = "mbr",
  220. .offset = 0,
  221. .size = SZ_128K,
  222. .mask_flags = MTD_WRITEABLE,
  223. }, {
  224. .name = "kernel",
  225. .offset = MTDPART_OFS_APPEND,
  226. .size = SZ_4M,
  227. }, {
  228. .name = "initrd",
  229. .offset = MTDPART_OFS_APPEND,
  230. .size = SZ_4M,
  231. }, {
  232. .name = "rootfs",
  233. .offset = MTDPART_OFS_APPEND,
  234. .size = MTDPART_SIZ_FULL,
  235. }
  236. };
  237. static struct platform_nand_data ts78xx_ts_nand_data = {
  238. .chip = {
  239. .nr_chips = 1,
  240. .partitions = ts78xx_ts_nand_parts,
  241. .nr_partitions = ARRAY_SIZE(ts78xx_ts_nand_parts),
  242. .chip_delay = 15,
  243. .bbt_options = NAND_BBT_USE_FLASH,
  244. },
  245. .ctrl = {
  246. /*
  247. * The HW ECC offloading functions, used to give about a 9%
  248. * performance increase for 'dd if=/dev/mtdblockX' and 5% for
  249. * nanddump. This all however was changed by git commit
  250. * e6cf5df1838c28bb060ac45b5585e48e71bbc740 so now there is
  251. * no performance advantage to be had so we no longer bother
  252. */
  253. .cmd_ctrl = ts78xx_ts_nand_cmd_ctrl,
  254. .dev_ready = ts78xx_ts_nand_dev_ready,
  255. .write_buf = ts78xx_ts_nand_write_buf,
  256. .read_buf = ts78xx_ts_nand_read_buf,
  257. },
  258. };
  259. static struct resource ts78xx_ts_nand_resources
  260. = DEFINE_RES_MEM(TS_NAND_DATA, 4);
  261. static struct platform_device ts78xx_ts_nand_device = {
  262. .name = "gen_nand",
  263. .id = -1,
  264. .dev = {
  265. .platform_data = &ts78xx_ts_nand_data,
  266. },
  267. .resource = &ts78xx_ts_nand_resources,
  268. .num_resources = 1,
  269. };
  270. static int ts78xx_ts_nand_load(void)
  271. {
  272. int rc;
  273. if (ts78xx_fpga.supports.ts_nand.init == 0) {
  274. rc = platform_device_register(&ts78xx_ts_nand_device);
  275. if (!rc)
  276. ts78xx_fpga.supports.ts_nand.init = 1;
  277. } else
  278. rc = platform_device_add(&ts78xx_ts_nand_device);
  279. if (rc)
  280. pr_info("NAND could not be registered: %d\n", rc);
  281. return rc;
  282. };
  283. static void ts78xx_ts_nand_unload(void)
  284. {
  285. platform_device_del(&ts78xx_ts_nand_device);
  286. }
  287. /*****************************************************************************
  288. * HW RNG
  289. ****************************************************************************/
  290. #define TS_RNG_DATA (TS78XX_FPGA_REGS_PHYS_BASE | 0x044)
  291. static struct resource ts78xx_ts_rng_resource
  292. = DEFINE_RES_MEM(TS_RNG_DATA, 4);
  293. static struct timeriomem_rng_data ts78xx_ts_rng_data = {
  294. .period = 1000000, /* one second */
  295. };
  296. static struct platform_device ts78xx_ts_rng_device = {
  297. .name = "timeriomem_rng",
  298. .id = -1,
  299. .dev = {
  300. .platform_data = &ts78xx_ts_rng_data,
  301. },
  302. .resource = &ts78xx_ts_rng_resource,
  303. .num_resources = 1,
  304. };
  305. static int ts78xx_ts_rng_load(void)
  306. {
  307. int rc;
  308. if (ts78xx_fpga.supports.ts_rng.init == 0) {
  309. rc = platform_device_register(&ts78xx_ts_rng_device);
  310. if (!rc)
  311. ts78xx_fpga.supports.ts_rng.init = 1;
  312. } else
  313. rc = platform_device_add(&ts78xx_ts_rng_device);
  314. if (rc)
  315. pr_info("RNG could not be registered: %d\n", rc);
  316. return rc;
  317. };
  318. static void ts78xx_ts_rng_unload(void)
  319. {
  320. platform_device_del(&ts78xx_ts_rng_device);
  321. }
  322. /*****************************************************************************
  323. * FPGA 'hotplug' support code
  324. ****************************************************************************/
  325. static void ts78xx_fpga_devices_zero_init(void)
  326. {
  327. ts78xx_fpga.supports.ts_rtc.init = 0;
  328. ts78xx_fpga.supports.ts_nand.init = 0;
  329. ts78xx_fpga.supports.ts_rng.init = 0;
  330. }
  331. static void ts78xx_fpga_supports(void)
  332. {
  333. /* TODO: put this 'table' into ts78xx-fpga.h */
  334. switch (ts78xx_fpga.id) {
  335. case TS7800_REV_1:
  336. case TS7800_REV_2:
  337. case TS7800_REV_3:
  338. case TS7800_REV_4:
  339. case TS7800_REV_5:
  340. case TS7800_REV_6:
  341. case TS7800_REV_7:
  342. case TS7800_REV_8:
  343. case TS7800_REV_9:
  344. ts78xx_fpga.supports.ts_rtc.present = 1;
  345. ts78xx_fpga.supports.ts_nand.present = 1;
  346. ts78xx_fpga.supports.ts_rng.present = 1;
  347. break;
  348. default:
  349. /* enable devices if magic matches */
  350. switch ((ts78xx_fpga.id >> 8) & 0xffffff) {
  351. case TS7800_FPGA_MAGIC:
  352. pr_warn("unrecognised FPGA revision 0x%.2x\n",
  353. ts78xx_fpga.id & 0xff);
  354. ts78xx_fpga.supports.ts_rtc.present = 1;
  355. ts78xx_fpga.supports.ts_nand.present = 1;
  356. ts78xx_fpga.supports.ts_rng.present = 1;
  357. break;
  358. default:
  359. ts78xx_fpga.supports.ts_rtc.present = 0;
  360. ts78xx_fpga.supports.ts_nand.present = 0;
  361. ts78xx_fpga.supports.ts_rng.present = 0;
  362. }
  363. }
  364. }
  365. static int ts78xx_fpga_load_devices(void)
  366. {
  367. int tmp, ret = 0;
  368. if (ts78xx_fpga.supports.ts_rtc.present == 1) {
  369. tmp = ts78xx_ts_rtc_load();
  370. if (tmp)
  371. ts78xx_fpga.supports.ts_rtc.present = 0;
  372. ret |= tmp;
  373. }
  374. if (ts78xx_fpga.supports.ts_nand.present == 1) {
  375. tmp = ts78xx_ts_nand_load();
  376. if (tmp)
  377. ts78xx_fpga.supports.ts_nand.present = 0;
  378. ret |= tmp;
  379. }
  380. if (ts78xx_fpga.supports.ts_rng.present == 1) {
  381. tmp = ts78xx_ts_rng_load();
  382. if (tmp)
  383. ts78xx_fpga.supports.ts_rng.present = 0;
  384. ret |= tmp;
  385. }
  386. return ret;
  387. }
  388. static int ts78xx_fpga_unload_devices(void)
  389. {
  390. int ret = 0;
  391. if (ts78xx_fpga.supports.ts_rtc.present == 1)
  392. ts78xx_ts_rtc_unload();
  393. if (ts78xx_fpga.supports.ts_nand.present == 1)
  394. ts78xx_ts_nand_unload();
  395. if (ts78xx_fpga.supports.ts_rng.present == 1)
  396. ts78xx_ts_rng_unload();
  397. return ret;
  398. }
  399. static int ts78xx_fpga_load(void)
  400. {
  401. ts78xx_fpga.id = readl(TS78XX_FPGA_REGS_VIRT_BASE);
  402. pr_info("FPGA magic=0x%.6x, rev=0x%.2x\n",
  403. (ts78xx_fpga.id >> 8) & 0xffffff,
  404. ts78xx_fpga.id & 0xff);
  405. ts78xx_fpga_supports();
  406. if (ts78xx_fpga_load_devices()) {
  407. ts78xx_fpga.state = -1;
  408. return -EBUSY;
  409. }
  410. return 0;
  411. };
  412. static int ts78xx_fpga_unload(void)
  413. {
  414. unsigned int fpga_id;
  415. fpga_id = readl(TS78XX_FPGA_REGS_VIRT_BASE);
  416. /*
  417. * There does not seem to be a feasible way to block access to the GPIO
  418. * pins from userspace (/dev/mem). This if clause should hopefully warn
  419. * those foolish enough not to follow 'policy' :)
  420. *
  421. * UrJTAG SVN since r1381 can be used to reprogram the FPGA
  422. */
  423. if (ts78xx_fpga.id != fpga_id) {
  424. pr_err("FPGA magic/rev mismatch\n"
  425. "TS-78xx FPGA: was 0x%.6x/%.2x but now 0x%.6x/%.2x\n",
  426. (ts78xx_fpga.id >> 8) & 0xffffff, ts78xx_fpga.id & 0xff,
  427. (fpga_id >> 8) & 0xffffff, fpga_id & 0xff);
  428. ts78xx_fpga.state = -1;
  429. return -EBUSY;
  430. }
  431. if (ts78xx_fpga_unload_devices()) {
  432. ts78xx_fpga.state = -1;
  433. return -EBUSY;
  434. }
  435. return 0;
  436. };
  437. static ssize_t ts78xx_fpga_show(struct kobject *kobj,
  438. struct kobj_attribute *attr, char *buf)
  439. {
  440. if (ts78xx_fpga.state < 0)
  441. return sprintf(buf, "borked\n");
  442. return sprintf(buf, "%s\n", (ts78xx_fpga.state) ? "online" : "offline");
  443. }
  444. static ssize_t ts78xx_fpga_store(struct kobject *kobj,
  445. struct kobj_attribute *attr, const char *buf, size_t n)
  446. {
  447. int value, ret;
  448. if (ts78xx_fpga.state < 0) {
  449. pr_err("FPGA borked, you must powercycle ASAP\n");
  450. return -EBUSY;
  451. }
  452. if (strncmp(buf, "online", sizeof("online") - 1) == 0)
  453. value = 1;
  454. else if (strncmp(buf, "offline", sizeof("offline") - 1) == 0)
  455. value = 0;
  456. else
  457. return -EINVAL;
  458. if (ts78xx_fpga.state == value)
  459. return n;
  460. ret = (ts78xx_fpga.state == 0)
  461. ? ts78xx_fpga_load()
  462. : ts78xx_fpga_unload();
  463. if (!(ret < 0))
  464. ts78xx_fpga.state = value;
  465. return n;
  466. }
  467. static struct kobj_attribute ts78xx_fpga_attr =
  468. __ATTR(ts78xx_fpga, 0644, ts78xx_fpga_show, ts78xx_fpga_store);
  469. /*****************************************************************************
  470. * General Setup
  471. ****************************************************************************/
  472. static unsigned int ts78xx_mpp_modes[] __initdata = {
  473. MPP0_UNUSED,
  474. MPP1_GPIO, /* JTAG Clock */
  475. MPP2_GPIO, /* JTAG Data In */
  476. MPP3_GPIO, /* Lat ECP2 256 FPGA - PB2B */
  477. MPP4_GPIO, /* JTAG Data Out */
  478. MPP5_GPIO, /* JTAG TMS */
  479. MPP6_GPIO, /* Lat ECP2 256 FPGA - PB31A_CLK4+ */
  480. MPP7_GPIO, /* Lat ECP2 256 FPGA - PB22B */
  481. MPP8_UNUSED,
  482. MPP9_UNUSED,
  483. MPP10_UNUSED,
  484. MPP11_UNUSED,
  485. MPP12_UNUSED,
  486. MPP13_UNUSED,
  487. MPP14_UNUSED,
  488. MPP15_UNUSED,
  489. MPP16_UART,
  490. MPP17_UART,
  491. MPP18_UART,
  492. MPP19_UART,
  493. /*
  494. * MPP[20] PCI Clock Out 1
  495. * MPP[21] PCI Clock Out 0
  496. * MPP[22] Unused
  497. * MPP[23] Unused
  498. * MPP[24] Unused
  499. * MPP[25] Unused
  500. */
  501. 0,
  502. };
  503. static void __init ts78xx_init(void)
  504. {
  505. int ret;
  506. /*
  507. * Setup basic Orion functions. Need to be called early.
  508. */
  509. orion5x_init();
  510. orion5x_mpp_conf(ts78xx_mpp_modes);
  511. /*
  512. * Configure peripherals.
  513. */
  514. orion5x_ehci0_init();
  515. orion5x_ehci1_init();
  516. orion5x_eth_init(&ts78xx_eth_data);
  517. orion5x_sata_init(&ts78xx_sata_data);
  518. orion5x_uart0_init();
  519. orion5x_uart1_init();
  520. orion5x_xor_init();
  521. /* FPGA init */
  522. ts78xx_fpga_devices_zero_init();
  523. ret = ts78xx_fpga_load();
  524. ret = sysfs_create_file(firmware_kobj, &ts78xx_fpga_attr.attr);
  525. if (ret)
  526. pr_err("sysfs_create_file failed: %d\n", ret);
  527. }
  528. MACHINE_START(TS78XX, "Technologic Systems TS-78xx SBC")
  529. /* Maintainer: Alexander Clouter <alex@digriz.org.uk> */
  530. .atag_offset = 0x100,
  531. .nr_irqs = ORION5X_NR_IRQS,
  532. .init_machine = ts78xx_init,
  533. .map_io = ts78xx_map_io,
  534. .init_early = orion5x_init_early,
  535. .init_irq = orion5x_init_irq,
  536. .init_time = orion5x_timer_init,
  537. .restart = orion5x_restart,
  538. MACHINE_END