head.S
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:90k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* -*- mode: asm -*-
  2. **
  3. ** head.S -- This file contains the initial boot code for the
  4. **      Linux/68k kernel.
  5. **
  6. ** Copyright 1993 by Hamish Macdonald
  7. **
  8. ** 68040 fixes by Michael Rausch
  9. ** 68060 fixes by Roman Hodek
  10. ** MMU cleanup by Randy Thelen
  11. ** Final MMU cleanup by Roman Zippel
  12. **
  13. ** Atari support by Andreas Schwab, using ideas of Robert de Vries
  14. ** and Bjoern Brauel
  15. ** VME Support by Richard Hirst
  16. **
  17. ** 94/11/14 Andreas Schwab: put kernel at PAGESIZE
  18. ** 94/11/18 Andreas Schwab: remove identity mapping of STRAM for Atari
  19. ** ++ Bjoern & Roman: ATARI-68040 support for the Medusa
  20. ** 95/11/18 Richard Hirst: Added MVME166 support
  21. ** 96/04/26 Guenther Kelleter: fixed identity mapping for Falcon with
  22. **        Magnum- and FX-alternate ram
  23. ** 98/04/25 Phil Blundell: added HP300 support
  24. ** 1998/08/30 David Kilzer: Added support for fbcon_font_desc structures
  25. **            for linux-2.1.115
  26. ** 9/02/11  Richard Zidlicky: added Q40 support (initial vesion 99/01/01) 
  27. **
  28. ** This file is subject to the terms and conditions of the GNU General Public
  29. ** License. See the file README.legal in the main directory of this archive
  30. ** for more details.
  31. **
  32. */
  33. /*
  34.  * Linux startup code.
  35.  *
  36.  * At this point, the boot loader has:
  37.  * Disabled interrupts
  38.  * Disabled caches
  39.  * Put us in supervisor state.
  40.  *
  41.  * The kernel setup code takes the following steps:
  42.  * .  Raise interrupt level
  43.  * .  Set up initial kernel memory mapping.
  44.  *    .  This sets up a mapping of the 4M of memory the kernel is located in.
  45.  *    .  It also does a mapping of any initial machine specific areas.
  46.  * .  Enable the MMU
  47.  * .  Enable cache memories
  48.  * .  Jump to kernel startup
  49.  *
  50.  * Much of the file restructuring was to accomplish:
  51.  * 1) Remove register dependency through-out the file.
  52.  * 2) Increase use of subroutines to perform functions
  53.  * 3) Increase readability of the code
  54.  *
  55.  * Of course, readability is a subjective issue, so it will never be
  56.  * argued that that goal was accomplished.  It was merely a goal.
  57.  * A key way to help make code more readable is to give good
  58.  * documentation.  So, the first thing you will find is exaustive
  59.  * write-ups on the structure of the file, and the features of the
  60.  * functional subroutines.
  61.  *
  62.  * General Structure:
  63.  * ------------------
  64.  * Without a doubt the single largest chunk of head.S is spent
  65.  * mapping the kernel and I/O physical space into the logical range
  66.  * for the kernel.
  67.  * There are new subroutines and data structures to make MMU
  68.  * support cleaner and easier to understand.
  69.  *  First, you will find a routine call "mmu_map" which maps
  70.  * a logical to a physical region for some length given a cache
  71.  * type on behalf of the caller.  This routine makes writing the
  72.  * actual per-machine specific code very simple.
  73.  * A central part of the code, but not a subroutine in itself,
  74.  * is the mmu_init code which is broken down into mapping the kernel
  75.  * (the same for all machines) and mapping machine-specific I/O
  76.  * regions.
  77.  * Also, there will be a description of engaging the MMU and
  78.  * caches.
  79.  * You will notice that there is a chunk of code which
  80.  * can emit the entire MMU mapping of the machine.  This is present
  81.  * only in debug modes and can be very helpful.
  82.  * Further, there is a new console driver in head.S that is
  83.  * also only engaged in debug mode.  Currently, it's only supported
  84.  * on the Macintosh class of machines.  However, it is hoped that
  85.  * others will plug-in support for specific machines.
  86.  *
  87.  * ######################################################################
  88.  *
  89.  * mmu_map
  90.  * -------
  91.  * mmu_map was written for two key reasons.  First, it was clear
  92.  * that it was very difficult to read the previous code for mapping
  93.  * regions of memory.  Second, the Macintosh required such extensive
  94.  * memory allocations that it didn't make sense to propogate the
  95.  * existing code any further.
  96.  * mmu_map requires some parameters:
  97.  *
  98.  * mmu_map (logical, physical, length, cache_type)
  99.  *
  100.  * While this essentially describes the function in the abstract, you'll
  101.  * find more indepth description of other parameters at the implementation site.
  102.  * 
  103.  * mmu_get_root_table_entry
  104.  * ------------------------
  105.  * mmu_get_ptr_table_entry
  106.  * -----------------------
  107.  * mmu_get_page_table_entry
  108.  * ------------------------
  109.  * 
  110.  * These routines are used by other mmu routines to get a pointer into
  111.  * a table, if necessary a new table is allocated. These routines are working
  112.  * basically like pmd_alloc() and pte_alloc() in <asm/pgtable.h>. The root
  113.  * table needs of course only to be allocated once in mmu_get_root_table_entry,
  114.  * so that here also some mmu specific initialization is done. The second page
  115.  * at the start of the kernel (the first page is unmapped later) is used for
  116.  * the kernel_pg_dir. It must be at a position known at link time (as it's used
  117.  * to initialize the init task struct) and since it needs special cache
  118.  * settings, it's the easiest to use this page, the rest of the page is used
  119.  * for further pointer tables.
  120.  * mmu_get_page_table_entry allocates always a whole page for page tables, this
  121.  * means 1024 pages and so 4MB of memory can be mapped. It doesn't make sense
  122.  * to manage page tables in smaller pieces as nearly all mappings have that
  123.  * size.
  124.  *
  125.  * ######################################################################
  126.  *
  127.  *
  128.  * ######################################################################
  129.  *
  130.  * mmu_engage
  131.  * ----------
  132.  * Thanks to a small helping routine enabling the mmu got quiet simple
  133.  * and there is only one way left. mmu_engage makes a complete a new mapping
  134.  * that only includes the absolute necessary to be able to jump to the final
  135.  * postion and to restore the original mapping.
  136.  * As this code doesn't need a transparent translation register anymore this
  137.  * means all registers are free to be used by machines that needs them for
  138.  * other purposes.
  139.  *
  140.  * ######################################################################
  141.  *
  142.  * mmu_print
  143.  * ---------
  144.  * This algorithm will print out the page tables of the system as
  145.  * appropriate for an 030 or an 040.  This is useful for debugging purposes
  146.  * and as such is enclosed in #ifdef MMU_PRINT/#endif clauses.
  147.  *
  148.  * ######################################################################
  149.  *
  150.  * console_init
  151.  * ------------
  152.  * The console is also able to be turned off.  The console in head.S
  153.  * is specifically for debugging and can be very useful.  It is surrounded by
  154.  * #ifdef CONSOLE/#endif clauses so it doesn't have to ship in known-good
  155.  * kernels.  It's basic algorithm is to determine the size of the screen
  156.  * (in height/width and bit depth) and then use that information for
  157.  * displaying an 8x8 font or an 8x16 (widthxheight).  I prefer the 8x8 for
  158.  * debugging so I can see more good data.  But it was trivial to add support
  159.  * for both fonts, so I included it.
  160.  * Also, the algorithm for plotting pixels is abstracted so that in
  161.  * theory other platforms could add support for different kinds of frame
  162.  * buffers.  This could be very useful.
  163.  *
  164.  * console_put_penguin
  165.  * -------------------
  166.  * An important part of any Linux bring up is the penguin and there's
  167.  * nothing like getting the Penguin on the screen!  This algorithm will work
  168.  * on any machine for which there is a console_plot_pixel.
  169.  *
  170.  * console_scroll
  171.  * --------------
  172.  * My hope is that the scroll algorithm does the right thing on the
  173.  * various platforms, but it wouldn't be hard to add the test conditions
  174.  * and new code if it doesn't.
  175.  *
  176.  * console_putc
  177.  * -------------
  178.  *
  179.  * ######################################################################
  180.  *
  181.  * Register usage has greatly simplified within head.S. Every subroutine
  182.  * saves and restores all registers that it modifies (except it returns a
  183.  * value in there of course). So the only register that needs to be initialized
  184.  * is the stack pointer.
  185.  * All other init code and data is now placed in the init section, so it will
  186.  * be automatically freed at the end of the kernel initialization.
  187.  *
  188.  * ######################################################################
  189.  *
  190.  * options
  191.  * -------
  192.  * There are many options availble in a build of this file.  I've
  193.  * taken the time to describe them here to save you the time of searching
  194.  * for them and trying to understand what they mean.
  195.  *
  196.  * CONFIG_xxx: These are the obvious machine configuration defines created
  197.  * during configuration.  These are defined in include/linux/autoconf.h.
  198.  *
  199.  * CONSOLE: There is support for head.S console in this file.  This
  200.  * console can talk to a Mac frame buffer, but could easily be extrapolated
  201.  * to extend it to support other platforms.
  202.  *
  203.  * TEST_MMU: This is a test harness for running on any given machine but
  204.  * getting an MMU dump for another class of machine.  The classes of machines
  205.  * that can be tested are any of the makes (Atari, Amiga, Mac, VME, etc.)
  206.  * and any of the models (030, 040, 060, etc.).
  207.  *
  208.  * NOTE: TEST_MMU is NOT permanent!  It is scheduled to be removed
  209.  * When head.S boots on Atari, Amiga, Macintosh, and VME
  210.  * machines.  At that point the underlying logic will be
  211.  * believed to be solid enough to be trusted, and TEST_MMU
  212.  * can be dropped.  Do note that that will clean up the
  213.  * head.S code significantly as large blocks of #if/#else
  214.  * clauses can be removed.
  215.  *
  216.  * MMU_NOCACHE_KERNEL: On the Macintosh platform there was an inquiry into
  217.  * determing why devices don't appear to work.  A test case was to remove
  218.  * the cacheability of the kernel bits.
  219.  *
  220.  * MMU_PRINT: There is a routine built into head.S that can display the
  221.  * MMU data structures.  It outputs its result through the serial_putc
  222.  * interface.  So where ever that winds up driving data, that's where the
  223.  * mmu struct will appear.  On the Macintosh that's typically the console.
  224.  *
  225.  * SERIAL_DEBUG: There are a series of putc() macro statements
  226.  * scattered through out the code to give progress of status to the
  227.  * person sitting at the console.  This constant determines whether those
  228.  * are used.
  229.  *
  230.  * DEBUG: This is the standard DEBUG flag that can be set for building
  231.  * the kernel.  It has the effect adding additional tests into
  232.  * the code.
  233.  *
  234.  * FONT_6x11:
  235.  * FONT_8x8:
  236.  * FONT_8x16:
  237.  * In theory these could be determined at run time or handed
  238.  * over by the booter.  But, let's be real, it's a fine hard
  239.  * coded value.  (But, you will notice the code is run-time
  240.  * flexible!)  A pointer to the font's struct fbcon_font_desc
  241.  * is kept locally in Lconsole_font.  It is used to determine
  242.  * font size information dynamically.
  243.  *
  244.  * Atari constants:
  245.  * USE_PRINTER: Use the printer port for serial debug.
  246.  * USE_SCC_B: Use the SCC port A (Serial2) for serial debug.
  247.  * USE_SCC_A: Use the SCC port B (Modem2) for serial debug.
  248.  * USE_MFP: Use the ST-MFP port (Modem1) for serial debug.
  249.  *
  250.  * Macintosh constants:
  251.  * MAC_SERIAL_DEBUG: Turns on serial debug output for the Macintosh.
  252.  * MAC_USE_SCC_A: Use the SCC port A (modem) for serial debug.
  253.  * MAC_USE_SCC_B: Use the SCC port B (printer) for serial debug (default).
  254.  */
  255. #include <linux/config.h>
  256. #include <linux/linkage.h>
  257. #include <linux/init.h>
  258. #include <asm/bootinfo.h>
  259. #include <asm/setup.h>
  260. #include <asm/entry.h>
  261. #include <asm/pgtable.h>
  262. #include <asm/page.h>
  263. #include "m68k_defs.h"
  264. #ifdef CONFIG_MAC
  265. #include <asm/machw.h>
  266. /*
  267.  * Macintosh console support
  268.  */
  269. #define CONSOLE
  270. /*
  271.  * Macintosh serial debug support; outputs boot info to the printer
  272.  *   and/or modem serial ports
  273.  */
  274. #undef MAC_SERIAL_DEBUG
  275. /*
  276.  * Macintosh serial debug port selection; define one or both;
  277.  *   requires MAC_SERIAL_DEBUG to be defined
  278.  */
  279. #define MAC_USE_SCC_A /* Macintosh modem serial port */
  280. #define MAC_USE_SCC_B /* Macintosh printer serial port */
  281. #endif /* CONFIG_MAC */
  282. #undef MMU_PRINT
  283. #undef MMU_NOCACHE_KERNEL
  284. #define SERIAL_DEBUG
  285. #undef DEBUG
  286. /*
  287.  * For the head.S console, there are three supported fonts, 6x11, 8x16 and 8x8.
  288.  * The 8x8 font is harder to read but fits more on the screen.
  289.  */
  290. #define FONT_8x8  /* default */
  291. /* #define FONT_8x16 */ /* 2nd choice */
  292. /* #define FONT_6x11 */ /* 3rd choice */
  293. .globl SYMBOL_NAME(kernel_pg_dir)
  294. .globl SYMBOL_NAME(availmem)
  295. .globl SYMBOL_NAME(m68k_pgtable_cachemode)
  296. .globl SYMBOL_NAME(m68k_supervisor_cachemode)
  297. #ifdef CONFIG_MVME16x
  298. .globl SYMBOL_NAME(mvme_bdid)
  299. #endif
  300. #ifdef CONFIG_Q40
  301. .globl SYMBOL_NAME(q40_mem_cptr)
  302. #endif
  303. #ifdef CONFIG_HP300
  304. .globl SYMBOL_NAME(hp300_phys_ram_base)
  305. #endif
  306. CPUTYPE_040 = 1 /* indicates an 040 */
  307. CPUTYPE_060 = 2 /* indicates an 060 */
  308. CPUTYPE_0460 = 3 /* if either above are set, this is set */
  309. CPUTYPE_020 = 4 /* indicates an 020 */
  310. /* Translation control register */
  311. TC_ENABLE = 0x8000
  312. TC_PAGE8K = 0x4000
  313. TC_PAGE4K = 0x0000
  314. /* Transparent translation registers */
  315. TTR_ENABLE = 0x8000 /* enable transparent translation */
  316. TTR_ANYMODE = 0x4000 /* user and kernel mode access */
  317. TTR_KERNELMODE = 0x2000 /* only kernel mode access */
  318. TTR_USERMODE = 0x0000 /* only user mode access */
  319. TTR_CI = 0x0400 /* inhibit cache */
  320. TTR_RW = 0x0200 /* read/write mode */
  321. TTR_RWM = 0x0100 /* read/write mask */
  322. TTR_FCB2 = 0x0040 /* function code base bit 2 */
  323. TTR_FCB1 = 0x0020 /* function code base bit 1 */
  324. TTR_FCB0 = 0x0010 /* function code base bit 0 */
  325. TTR_FCM2 = 0x0004 /* function code mask bit 2 */
  326. TTR_FCM1 = 0x0002 /* function code mask bit 1 */
  327. TTR_FCM0 = 0x0001 /* function code mask bit 0 */
  328. /* Cache Control registers */
  329. CC6_ENABLE_D = 0x80000000 /* enable data cache (680[46]0) */
  330. CC6_FREEZE_D = 0x40000000 /* freeze data cache (68060) */
  331. CC6_ENABLE_SB = 0x20000000 /* enable store buffer (68060) */
  332. CC6_PUSH_DPI = 0x10000000 /* disable CPUSH invalidation (68060) */
  333. CC6_HALF_D = 0x08000000 /* half-cache mode for data cache (68060) */
  334. CC6_ENABLE_B = 0x00800000 /* enable branch cache (68060) */
  335. CC6_CLRA_B = 0x00400000 /* clear all entries in branch cache (68060) */
  336. CC6_CLRU_B = 0x00200000 /* clear user entries in branch cache (68060) */
  337. CC6_ENABLE_I = 0x00008000 /* enable instruction cache (680[46]0) */
  338. CC6_FREEZE_I = 0x00004000 /* freeze instruction cache (68060) */
  339. CC6_HALF_I = 0x00002000 /* half-cache mode for instruction cache (68060) */
  340. CC3_ALLOC_WRITE = 0x00002000 /* write allocate mode(68030) */
  341. CC3_ENABLE_DB = 0x00001000 /* enable data burst (68030) */
  342. CC3_CLR_D = 0x00000800 /* clear data cache (68030) */
  343. CC3_CLRE_D = 0x00000400 /* clear entry in data cache (68030) */
  344. CC3_FREEZE_D = 0x00000200 /* freeze data cache (68030) */
  345. CC3_ENABLE_D = 0x00000100 /* enable data cache (68030) */
  346. CC3_ENABLE_IB = 0x00000010 /* enable instruction burst (68030) */
  347. CC3_CLR_I = 0x00000008 /* clear instruction cache (68030) */
  348. CC3_CLRE_I = 0x00000004 /* clear entry in instruction cache (68030) */
  349. CC3_FREEZE_I = 0x00000002 /* freeze instruction cache (68030) */
  350. CC3_ENABLE_I = 0x00000001 /* enable instruction cache (68030) */
  351. /* Miscellaneous definitions */
  352. PAGESIZE = 4096
  353. PAGESHIFT = 12
  354. ROOT_TABLE_SIZE = 128
  355. PTR_TABLE_SIZE = 128
  356. PAGE_TABLE_SIZE = 64
  357. ROOT_INDEX_SHIFT = 25
  358. PTR_INDEX_SHIFT  = 18
  359. PAGE_INDEX_SHIFT = 12
  360. #ifdef DEBUG
  361. /* When debugging use readable names for labels */
  362. #ifdef __STDC__
  363. #define L(name) .head.S.##name
  364. #else
  365. #define L(name) .head.S./**/name
  366. #endif
  367. #else
  368. #ifdef __STDC__
  369. #define L(name) .L##name
  370. #else
  371. #define L(name) .L/**/name
  372. #endif
  373. #endif
  374. /* The __INITDATA stuff is a no-op when ftrace or kgdb are turned on */
  375. #ifndef __INITDATA
  376. #define __INITDATA .data
  377. #define __FINIT .previous
  378. #endif
  379. /* Several macros to make the writing of subroutines easier:
  380.  * - func_start marks the beginning of the routine which setups the frame
  381.  *   register and saves the registers, it also defines another macro
  382.  *   to automatically restore the registers again.
  383.  * - func_return marks the end of the routine and simply calls the prepared
  384.  *   macro to restore registers and jump back to the caller.
  385.  * - func_define generates another macro to automatically put arguments
  386.  *   onto the stack call the subroutine and cleanup the stack again.
  387.  */
  388. /* Within subroutines these macros can be used to access the arguments
  389.  * on the stack. With STACK some allocated memory on the stack can be
  390.  * accessed and ARG0 points to the return address (used by mmu_engage).
  391.  */
  392. #define STACK %a6@(stackstart)
  393. #define ARG0 %a6@(4)
  394. #define ARG1 %a6@(8)
  395. #define ARG2 %a6@(12)
  396. #define ARG3 %a6@(16)
  397. #define ARG4 %a6@(20)
  398. .macro func_start name,saveregs,stack=0
  399. L(name):
  400. linkw %a6,#-stack
  401. moveml saveregs,%sp@-
  402. .set stackstart,-stack
  403. .macro func_return_name
  404. moveml %sp@+,saveregs
  405. unlk %a6
  406. rts
  407. .endm
  408. .endm
  409. .macro func_return name
  410. func_return_name
  411. .endm
  412. .macro func_call name
  413. jbsr L(name)
  414. .endm
  415. .macro move_stack nr,arg1,arg2,arg3,arg4
  416. .if nr
  417. move_stack "(nr-1)",arg2,arg3,arg4
  418. movel arg1,%sp@-
  419. .endif
  420. .endm
  421. .macro func_define name,nr=0
  422. .macro name arg1,arg2,arg3,arg4
  423. move_stack nr,arg1,arg2,arg3,arg4
  424. func_call name
  425. .if nr
  426. lea %sp@(nr*4),%sp
  427. .endif
  428. .endm
  429. .endm
  430. func_define mmu_map,4
  431. func_define mmu_map_tt,4
  432. func_define mmu_fixup_page_mmu_cache,1
  433. func_define mmu_temp_map,2
  434. func_define mmu_engage
  435. func_define mmu_get_root_table_entry,1
  436. func_define mmu_get_ptr_table_entry,2
  437. func_define mmu_get_page_table_entry,2
  438. func_define mmu_print
  439. func_define get_new_page
  440. #ifdef CONFIG_HP300
  441. func_define set_leds
  442. #endif
  443. .macro mmu_map_eq arg1,arg2,arg3
  444. mmu_map arg1,arg1,arg2,arg3
  445. .endm
  446. .macro get_bi_record record
  447. pea record
  448. func_call get_bi_record
  449. addql #4,%sp
  450. .endm
  451. func_define serial_putc,1
  452. func_define console_putc,1
  453. .macro putc ch
  454. #if defined(CONSOLE) || defined(SERIAL_DEBUG)
  455. pea ch
  456. #endif
  457. #ifdef CONSOLE
  458. func_call console_putc
  459. #endif
  460. #ifdef SERIAL_DEBUG
  461. func_call serial_putc
  462. #endif
  463. #if defined(CONSOLE) || defined(SERIAL_DEBUG)
  464. addql #4,%sp
  465. #endif
  466. .endm
  467. .macro dputc ch
  468. #ifdef DEBUG
  469. putc ch
  470. #endif
  471. .endm
  472. func_define putn,1
  473. .macro dputn nr
  474. #ifdef DEBUG
  475. putn nr
  476. #endif
  477. .endm
  478. .macro puts string
  479. #if defined(CONSOLE) || defined(SERIAL_DEBUG)
  480. __INITDATA
  481. .Lstr@:
  482. .string "string"
  483. __FINIT
  484. pea %pc@(.Lstr@)
  485. func_call puts
  486. addql #4,%sp
  487. #endif
  488. .endm
  489. .macro dputs string
  490. #ifdef DEBUG
  491. puts "string"
  492. #endif
  493. .endm
  494. #define is_not_amiga(lab) cmpl &MACH_AMIGA,%pc@(m68k_machtype); jne lab
  495. #define is_not_atari(lab) cmpl &MACH_ATARI,%pc@(m68k_machtype); jne lab
  496. #define is_not_mac(lab) cmpl &MACH_MAC,%pc@(m68k_machtype); jne lab
  497. #define is_not_mvme147(lab) cmpl &MACH_MVME147,%pc@(m68k_machtype); jne lab
  498. #define is_not_mvme16x(lab) cmpl &MACH_MVME16x,%pc@(m68k_machtype); jne lab
  499. #define is_not_bvme6000(lab) cmpl &MACH_BVME6000,%pc@(m68k_machtype); jne lab
  500. #define is_mvme147(lab) cmpl &MACH_MVME147,%pc@(m68k_machtype); jeq lab
  501. #define is_mvme16x(lab) cmpl &MACH_MVME16x,%pc@(m68k_machtype); jeq lab
  502. #define is_bvme6000(lab) cmpl &MACH_BVME6000,%pc@(m68k_machtype); jeq lab
  503. #define is_not_hp300(lab) cmpl &MACH_HP300,%pc@(m68k_machtype); jne lab
  504. #define is_not_apollo(lab) cmpl &MACH_APOLLO,%pc@(m68k_machtype); jne lab
  505. #define is_not_q40(lab) cmpl &MACH_Q40,%pc@(m68k_machtype); jne lab
  506. #define is_not_sun3x(lab) cmpl &MACH_SUN3X,%pc@(m68k_machtype); jne lab
  507. #define hasnt_leds(lab) cmpl &MACH_HP300,%pc@(m68k_machtype); 
  508. jeq 42f; 
  509. cmpl &MACH_APOLLO,%pc@(m68k_machtype); 
  510. jne lab ;
  511. 42:
  512. #define is_040_or_060(lab) btst &CPUTYPE_0460,%pc@(L(cputype)+3); jne lab
  513. #define is_not_040_or_060(lab) btst &CPUTYPE_0460,%pc@(L(cputype)+3); jeq lab
  514. #define is_040(lab) btst &CPUTYPE_040,%pc@(L(cputype)+3); jne lab
  515. #define is_060(lab) btst &CPUTYPE_060,%pc@(L(cputype)+3); jne lab
  516. #define is_not_060(lab) btst &CPUTYPE_060,%pc@(L(cputype)+3); jeq lab
  517. #define is_020(lab) btst &CPUTYPE_020,%pc@(L(cputype)+3); jne lab
  518. #define is_not_020(lab) btst &CPUTYPE_020,%pc@(L(cputype)+3); jeq lab
  519. /* On the HP300 we use the on-board LEDs for debug output before
  520.    the console is running.  Writing a 1 bit turns the corresponding LED
  521.    _off_ - on the 340 bit 7 is towards the back panel of the machine.  */
  522. .macro leds mask
  523. #if defined(CONFIG_HP300) || defined(CONFIG_APOLLO)
  524. hasnt_leds(.Lled@)
  525. pea mask
  526. func_call set_leds
  527. addql #4,%sp
  528. .Lled@:
  529. #endif
  530. .endm
  531. .text
  532. ENTRY(_stext)
  533. /*
  534.  * Version numbers of the bootinfo interface
  535.  * The area from _stext to _start will later be used as kernel pointer table
  536.  */
  537. bras 1f /* Jump over bootinfo version numbers */
  538. .long BOOTINFOV_MAGIC
  539. .long MACH_AMIGA, AMIGA_BOOTI_VERSION
  540. .long MACH_ATARI, ATARI_BOOTI_VERSION
  541. .long MACH_MVME147, MVME147_BOOTI_VERSION
  542. .long MACH_MVME16x, MVME16x_BOOTI_VERSION
  543. .long MACH_BVME6000, BVME6000_BOOTI_VERSION
  544. .long MACH_MAC, MAC_BOOTI_VERSION
  545. .long MACH_Q40, Q40_BOOTI_VERSION
  546. .long 0
  547. 1: jra SYMBOL_NAME(__start)
  548. .equ SYMBOL_NAME(kernel_pg_dir),SYMBOL_NAME(_stext)
  549. .equ .,SYMBOL_NAME(_stext)+PAGESIZE
  550. ENTRY(_start)
  551. jra SYMBOL_NAME(__start)
  552. __INIT
  553. ENTRY(__start)
  554. #ifdef CONFIG_HP300
  555. /* This is a hack.  The HP NetBSD bootloader loads us at an arbitrary
  556.    address (apparently 0xff002000 in practice) which is not good if we need
  557.    to be able to map this to VA 0x1000.  We could do it with pagetables but
  558.    a better solution seems to be to relocate the kernel in physical memory
  559.    before we start.  
  560.    So, we copy the entire kernel image (code+data+bss) down to the 16MB
  561.    boundary that marks the start of RAM.  This is slightly tricky because
  562.    we must not overwrite the copying code itself. :-)  */
  563. /* 15/5/98.  The start address of physical RAM changes depending on how much
  564.    RAM is present.  This is actually a blessing in disguise as it provides
  565.    a way for us to work out the RAM size rather than hardwiring it.  */
  566. lea %pc@(_start),%a0
  567. movel %a0,%d6
  568. and #0xffff0000, %d6
  569. lea %pc@(SYMBOL_NAME(hp300_phys_ram_base)),%a0
  570. movel %d6, %a0@
  571. movel %pc@(L(custom)),%a3
  572. moveb #0xfe,%d7
  573. moveb %d7,%a3@(0x1ffff)
  574. lea %pc@(Lcopystart),%a0
  575. lea %pc@(Lcopyend),%a1
  576. movel %d6,%a2 /* Start of physical RAM */
  577. 1: moveb %a0@+,%d0
  578. moveb %d0,%a2@+
  579. cmpl %a0,%a1
  580. jbne 1b
  581. movel %d6,%a2
  582. moveb #0xfd,%d7
  583. moveb %d7,%a3@(0x1ffff)
  584. lea %pc@(_stext),%a0
  585. lea %pc@(_end),%a1
  586. jmp %a2@
  587. Lcopystart:
  588. moveb #0xf7,%d7
  589. moveb %d7,%a3@(0x1ffff)
  590. movel %d6,%a2 /* Start of kernel */
  591. add #0x1000,%a2
  592. 1: moveb %a0@+,%d0
  593. moveb %d0,%a2@+
  594. cmpl %a0,%a1
  595. jbne 1b
  596. moveb #0,%d7
  597. moveb %d7,%a3@(0x1ffff)
  598. movel %d6,%a0
  599. addl #Lstart1,%a0
  600. jmp %a0@
  601. Lcopyend:
  602. Lstart1:
  603. moveb #0x3f,%d7
  604. moveb %d7,%a3@(0x1ffff)
  605. #endif /* CONFIG_HP300 */
  606. /*
  607.  * Setup initial stack pointer
  608.  */
  609. lea %pc@(SYMBOL_NAME(_stext)),%sp
  610. /*
  611.  * Record the CPU and machine type.
  612.  */
  613. #ifndef CONFIG_HP300
  614. get_bi_record BI_MACHTYPE
  615. lea %pc@(SYMBOL_NAME(m68k_machtype)),%a1
  616. movel %a0@,%a1@
  617. get_bi_record BI_FPUTYPE
  618. lea %pc@(SYMBOL_NAME(m68k_fputype)),%a1
  619. movel %a0@,%a1@
  620. get_bi_record BI_MMUTYPE
  621. lea %pc@(SYMBOL_NAME(m68k_mmutype)),%a1
  622. movel %a0@,%a1@
  623. get_bi_record BI_CPUTYPE
  624. lea %pc@(SYMBOL_NAME(m68k_cputype)),%a1
  625. movel %a0@,%a1@
  626. #else /* CONFIG_HP300 */
  627. /* FIXME HP300 doesn't use bootinfo yet */
  628. movel #MACH_HP300,%d4
  629. lea %pc@(SYMBOL_NAME(m68k_machtype)),%a0
  630. movel %d4,%a0@
  631. movel #FPU_68881,%d0
  632. lea %pc@(SYMBOL_NAME(m68k_fputype)),%a0
  633. movel %d0,%a0@
  634. movel #MMU_68030,%d0
  635. lea %pc@(SYMBOL_NAME(m68k_mmutype)),%a0
  636. movel %d0,%a0@
  637. movel #CPU_68030,%d0
  638. lea %pc@(SYMBOL_NAME(m68k_cputype)),%a0
  639. movel %d0,%a0@
  640. leds(0x1)
  641. #endif /* CONFIG_HP300 */
  642. #ifdef CONFIG_MAC
  643. /*
  644.  * For Macintosh, we need to determine the display parameters early (at least
  645.  * while debugging it).
  646.  */
  647. is_not_mac(L(test_notmac))
  648. get_bi_record BI_MAC_VADDR
  649. lea %pc@(L(mac_videobase)),%a1
  650. movel %a0@,%a1@
  651. get_bi_record BI_MAC_VDEPTH
  652. lea %pc@(L(mac_videodepth)),%a1
  653. movel %a0@,%a1@
  654. get_bi_record BI_MAC_VDIM
  655. lea %pc@(L(mac_dimensions)),%a1
  656. movel %a0@,%a1@
  657. get_bi_record BI_MAC_VROW
  658. lea %pc@(L(mac_rowbytes)),%a1
  659. movel %a0@,%a1@
  660. #ifdef MAC_SERIAL_DEBUG
  661. get_bi_record BI_MAC_SCCBASE
  662. lea %pc@(L(mac_sccbase)),%a1
  663. movel %a0@,%a1@
  664. #endif /* MAC_SERIAL_DEBUG */
  665. #if 0
  666. /*
  667.  * Clear the screen
  668.  */
  669. lea %pc@(L(mac_videobase)),%a0
  670. movel %a0@,%a1
  671. lea %pc@(L(mac_dimensions)),%a0
  672. movel %a0@,%d1
  673. swap %d1 /* #rows is high bytes */
  674. andl #0xFFFF,%d1 /* rows */
  675. subl #10,%d1
  676. lea %pc@(L(mac_rowbytes)),%a0
  677. loopy2:
  678. movel %a0@,%d0
  679. subql #1,%d0
  680. loopx2:
  681. moveb #0x55, %a1@+
  682. dbra %d0,loopx2
  683. dbra %d1,loopy2
  684. #endif
  685. L(test_notmac):
  686. #endif /* CONFIG_MAC */
  687. /*
  688.  * There are ultimately two pieces of information we want for all kinds of
  689.  * processors CpuType and CacheBits.  The CPUTYPE was passed in from booter
  690.  * and is converted here from a booter type definition to a separate bit
  691.  * number which allows for the standard is_0x0 macro tests.
  692.  */
  693. movel %pc@(SYMBOL_NAME(m68k_cputype)),%d0
  694. /*
  695.  * Assume it's an 030
  696.  */
  697. clrl %d1
  698. /*
  699.  * Test the BootInfo cputype for 060
  700.  */
  701. btst #CPUB_68060,%d0
  702. jeq 1f
  703. bset #CPUTYPE_060,%d1
  704. bset #CPUTYPE_0460,%d1
  705. jra 3f
  706. 1:
  707. /*
  708.  * Test the BootInfo cputype for 040
  709.  */
  710. btst #CPUB_68040,%d0
  711. jeq 2f
  712. bset #CPUTYPE_040,%d1
  713. bset #CPUTYPE_0460,%d1
  714. jra 3f
  715. 2:
  716. /*
  717.  * Test the BootInfo cputype for 020
  718.  */
  719. btst #CPUB_68020,%d0
  720. jeq 3f
  721. bset #CPUTYPE_020,%d1
  722. jra 3f
  723. 3:
  724. /*
  725.  * Record the cpu type
  726.  */
  727. lea %pc@(L(cputype)),%a0
  728. movel %d1,%a0@
  729. /*
  730.  * NOTE:
  731.  *
  732.  * Now the macros are valid:
  733.  * is_040_or_060
  734.  * is_not_040_or_060
  735.  * is_040
  736.  * is_060
  737.  * is_not_060
  738.  */
  739. /*
  740.  * Determine the cache mode for pages holding MMU tables
  741.  * and for supervisor mode, unused for '020 and '030
  742.  */
  743. clrl %d0
  744. clrl %d1
  745. is_not_040_or_060(L(save_cachetype))
  746. /*
  747.  * '040 or '060
  748.  * d1 := cacheable write-through
  749.  * NOTE: The 68040 manual strongly recommends non-cached for MMU tables,
  750.  * but we have been using write-through since at least 2.0.29 so I
  751.  * guess it is OK.
  752.  */
  753. #ifdef CONFIG_060_WRITETHROUGH
  754. /*
  755.  * If this is a 68060 board using drivers with cache coherency
  756.  * problems, then supervisor memory accesses need to be write-through
  757.  * also; otherwise, we want copyback.
  758.  */
  759. is_not_060(1f)
  760. movel #_PAGE_CACHE040W,%d0
  761. jra L(save_cachetype)
  762. #endif /* CONFIG_060_WRITETHROUGH */
  763. 1:
  764. movew #_PAGE_CACHE040,%d0
  765. movel #_PAGE_CACHE040W,%d1
  766. L(save_cachetype):
  767. /* Save cache mode for supervisor mode and page tables
  768.  */
  769. lea %pc@(SYMBOL_NAME(m68k_supervisor_cachemode)),%a0
  770. movel %d0,%a0@
  771. lea %pc@(SYMBOL_NAME(m68k_pgtable_cachemode)),%a0
  772. movel %d1,%a0@
  773. /*
  774.  * raise interrupt level
  775.  */
  776. movew #0x2700,%sr
  777. /*
  778.    If running on an Atari, determine the I/O base of the
  779.    serial port and test if we are running on a Medusa or Hades.
  780.    This test is necessary here, because on the Hades the serial
  781.    port is only accessible in the high I/O memory area.
  782.    The test whether it is a Medusa is done by writing to the byte at
  783.    phys. 0x0. This should result in a bus error on all other machines.
  784.    ...should, but doesn't. The Afterburner040 for the Falcon has the
  785.    same behaviour (0x0..0x7 are no ROM shadow). So we have to do
  786.    another test to distinguish Medusa and AB040. This is a
  787.    read attempt for 0x00ff82fe phys. that should bus error on a Falcon
  788.    (+AB040), but is in the range where the Medusa always asserts DTACK.
  789.    The test for the Hades is done by reading address 0xb0000000. This
  790.    should give a bus error on the Medusa.
  791.  */
  792. #ifdef CONFIG_ATARI
  793. is_not_atari(L(notypetest))
  794. /* get special machine type (Medusa/Hades/AB40) */
  795. moveq #0,%d3 /* default if tag doesn't exist */
  796. get_bi_record BI_ATARI_MCH_TYPE
  797. tstl %d0
  798. jbmi 1f
  799. movel %a0@,%d3
  800. lea %pc@(SYMBOL_NAME(atari_mch_type)),%a0
  801. movel %d3,%a0@
  802. 1:
  803. /* On the Hades, the iobase must be set up before opening the
  804.  * serial port. There are no I/O regs at 0x00ffxxxx at all. */
  805. moveq #0,%d0
  806. cmpl #ATARI_MACH_HADES,%d3
  807. jbne 1f
  808. movel #0xff000000,%d0 /* Hades I/O base addr: 0xff000000 */
  809. 1: lea     %pc@(L(iobase)),%a0
  810. movel   %d0,%a0@
  811. L(notypetest):
  812. #endif
  813. #ifdef CONFIG_VME
  814. is_mvme147(L(getvmetype))
  815. is_bvme6000(L(getvmetype))
  816. is_not_mvme16x(L(gvtdone))
  817. /* See if the loader has specified the BI_VME_TYPE tag.  Recent
  818.  * versions of VMELILO and TFTPLILO do this.  We have to do this
  819.  * early so we know how to handle console output.  If the tag
  820.  * doesn't exist then we use the Bug for output on MVME16x.
  821.  */
  822. L(getvmetype):
  823. get_bi_record BI_VME_TYPE
  824. tstl %d0
  825. jbmi 1f
  826. movel %a0@,%d3
  827. lea %pc@(SYMBOL_NAME(vme_brdtype)),%a0
  828. movel %d3,%a0@
  829. 1:
  830. #ifdef CONFIG_MVME16x
  831. is_not_mvme16x(L(gvtdone))
  832. /* Need to get the BRD_ID info to differentiate between 162, 167,
  833.  * etc.  This is available as a BI_VME_BRDINFO tag with later
  834.  * versions of VMELILO and TFTPLILO, otherwise we call the Bug.
  835.  */
  836. get_bi_record BI_VME_BRDINFO
  837. tstl %d0
  838. jpl 1f
  839. /* Get pointer to board ID data from Bug */
  840. movel %d2,%sp@-
  841. trap #15
  842. .word 0x70 /* trap 0x70 - .BRD_ID */
  843. movel %sp@+,%a0
  844. 1:
  845. lea %pc@(SYMBOL_NAME(mvme_bdid)),%a1
  846. /* Structure is 32 bytes long */
  847. movel %a0@+,%a1@+
  848. movel %a0@+,%a1@+
  849. movel %a0@+,%a1@+
  850. movel %a0@+,%a1@+
  851. movel %a0@+,%a1@+
  852. movel %a0@+,%a1@+
  853. movel %a0@+,%a1@+
  854. movel %a0@+,%a1@+
  855. #endif
  856. L(gvtdone):
  857. #endif
  858. /*
  859.  * Initialize serial port
  860.  */
  861. jbsr L(serial_init)
  862. /*
  863.  * Initialize console
  864.  */
  865. #ifdef CONFIG_MAC
  866. is_not_mac(L(nocon))
  867. #ifdef CONSOLE
  868. jbsr L(console_init)
  869. #ifdef CONSOLE_PENGUIN
  870. jbsr L(console_put_penguin)
  871. #endif /* CONSOLE_PENGUIN */
  872. jbsr L(console_put_stats)
  873. #endif /* CONSOLE */
  874. L(nocon):
  875. #endif /* CONFIG_MAC */
  876. putc 'n'
  877. putc 'A'
  878. #ifdef CONFIG_HP300
  879. leds(0x2)
  880. #endif /* CONFIG_HP300 */
  881. dputn %pc@(L(cputype))
  882. dputn %pc@(SYMBOL_NAME(m68k_supervisor_cachemode))
  883. dputn %pc@(SYMBOL_NAME(m68k_pgtable_cachemode))
  884. dputc 'n'
  885. /*
  886.  * Save physical start address of kernel
  887.  */
  888. lea %pc@(L(phys_kernel_start)),%a0
  889. lea %pc@(SYMBOL_NAME(_stext)),%a1
  890. subl #SYMBOL_NAME(_stext),%a1
  891. addl #PAGE_OFFSET,%a1
  892. movel %a1,%a0@
  893. putc 'B'
  894. leds 0x4
  895. /*
  896.  * mmu_init
  897.  *
  898.  * This block of code does what's necessary to map in the various kinds
  899.  * of machines for execution of Linux.
  900.  * First map the first 4 MB of kernel code & data
  901.  */
  902. mmu_map #PAGE_OFFSET,%pc@(L(phys_kernel_start)),#4*1024*1024,
  903. %pc@(SYMBOL_NAME(m68k_supervisor_cachemode))
  904. putc 'C'
  905. #ifdef CONFIG_AMIGA
  906. L(mmu_init_amiga):
  907. is_not_amiga(L(mmu_init_not_amiga))
  908. /*
  909.  * mmu_init_amiga
  910.  */
  911. putc 'D'
  912. is_not_040_or_060(1f)
  913. /*
  914.  * 040: Map the 16Meg range physical 0x0 upto logical 0x8000.0000
  915.  */
  916. mmu_map #0x80000000,#0,#0x01000000,#_PAGE_NOCACHE_S
  917. /*
  918.  * Map the Zorro III I/O space with transparent translation
  919.  * for frame buffer memory etc.
  920.  */
  921. mmu_map_tt #1,#0x40000000,#0x20000000,#_PAGE_NOCACHE_S
  922. jbra L(mmu_init_done)
  923. 1:
  924. /*
  925.  * 030: Map the 32Meg range physical 0x0 upto logical 0x8000.0000
  926.  */
  927. mmu_map #0x80000000,#0,#0x02000000,#_PAGE_NOCACHE030
  928. mmu_map_tt #1,#0x40000000,#0x20000000,#_PAGE_NOCACHE030
  929. jbra L(mmu_init_done)
  930. L(mmu_init_not_amiga):
  931. #endif
  932. #ifdef CONFIG_ATARI
  933. L(mmu_init_atari):
  934. is_not_atari(L(mmu_init_not_atari))
  935. putc 'E'
  936. /* On the Atari, we map the I/O region (phys. 0x00ffxxxx) by mapping
  937.    the last 16 MB of virtual address space to the first 16 MB (i.e.
  938.    0xffxxxxxx -> 0x00xxxxxx). For this, an additional pointer table is
  939.    needed. I/O ranges are marked non-cachable.
  940.    For the Medusa it is better to map the I/O region transparently
  941.    (i.e. 0xffxxxxxx -> 0xffxxxxxx), because some I/O registers are
  942.    accessible only in the high area.
  943.    On the Hades all I/O registers are only accessible in the high
  944.    area.
  945. */
  946. /* I/O base addr for non-Medusa, non-Hades: 0x00000000 */
  947. moveq #0,%d0
  948. movel %pc@(SYMBOL_NAME(atari_mch_type)),%d3
  949. cmpl #ATARI_MACH_MEDUSA,%d3
  950. jbeq 2f
  951. cmpl #ATARI_MACH_HADES,%d3
  952. jbne 1f
  953. 2: movel #0xff000000,%d0 /* Medusa/Hades base addr: 0xff000000 */
  954. 1: movel %d0,%d3
  955. is_040_or_060(L(spata68040))
  956. /* Map everything non-cacheable, though not all parts really
  957.  * need to disable caches (crucial only for 0xff8000..0xffffff
  958.  * (standard I/O) and 0xf00000..0xf3ffff (IDE)). The remainder
  959.  * isn't really used, except for sometimes peeking into the
  960.  * ROMs (mirror at phys. 0x0), so caching isn't necessary for
  961.  * this. */
  962. mmu_map #0xff000000,%d3,#0x01000000,#_PAGE_NOCACHE030
  963. jbra L(mmu_init_done)
  964. L(spata68040):
  965. mmu_map #0xff000000,%d3,#0x01000000,#_PAGE_NOCACHE_S
  966. jbra L(mmu_init_done)
  967. L(mmu_init_not_atari):
  968. #endif
  969. #ifdef CONFIG_Q40
  970. is_not_q40(L(notq40))
  971. /*
  972.  * add transparent mapping for 0xff00 0000 - 0xffff ffff
  973.  * non-cached serialized etc..
  974.  * this includes master chip, DAC, RTC and ISA ports
  975.  * 0xfe000000-0xfeffffff is for screen and ROM
  976.  */
  977. putc    'Q'
  978. mmu_map_tt #0,#0xfe000000,#0x01000000,#_PAGE_CACHE040W
  979. mmu_map_tt #1,#0xff000000,#0x01000000,#_PAGE_NOCACHE_S
  980. jbra L(mmu_init_done)
  981. L(notq40):
  982. #endif
  983. #ifdef CONFIG_HP300
  984. is_not_hp300(L(nothp300))
  985. /* On the HP300, we map the ROM, INTIO and DIO regions (phys. 0x00xxxxxx)
  986.    by mapping 32MB from 0xf0xxxxxx -> 0x00xxxxxx) using an 030 early
  987.    termination page descriptor.  The ROM mapping is needed because the LEDs
  988.    are mapped there too.  */
  989. mmu_map #0xf0000000,#0,#0x02000000,#_PAGE_NOCACHE030
  990. L(nothp300):
  991. #endif
  992. #ifdef CONFIG_MVME147
  993.        is_not_mvme147(L(not147))
  994.        /*
  995. * On MVME147 we have already created kernel page tables for
  996. * 4MB of RAM at address 0, so now need to do a transparent
  997. * mapping of the top of memory space.  Make it 0.5GByte for now,
  998. * so we can access on-board i/o areas.
  999. */
  1000.        mmu_map_tt      #1,#0xe0000000,#0x20000000,#_PAGE_NOCACHE030
  1001.        jbra    L(mmu_init_done)
  1002. L(not147):
  1003. #endif /* CONFIG_MVME147 */
  1004. #ifdef CONFIG_MVME16x
  1005. is_not_mvme16x(L(not16x))
  1006. /*
  1007.  * On MVME16x we have already created kernel page tables for
  1008.  * 4MB of RAM at address 0, so now need to do a transparent
  1009.  * mapping of the top of memory space.  Make it 0.5GByte for now.
  1010.  * Supervisor only access, so transparent mapping doesn't
  1011.  * clash with User code virtual address space.
  1012.  * this covers IO devices, PROM and SRAM.  The PROM and SRAM
  1013.  * mapping is needed to allow 167Bug to run.
  1014.  * IO is in the range 0xfff00000 to 0xfffeffff.
  1015.  * PROM is 0xff800000->0xffbfffff and SRAM is
  1016.  * 0xffe00000->0xffe1ffff.
  1017.  */
  1018. mmu_map_tt #1,#0xe0000000,#0x20000000,#_PAGE_NOCACHE_S
  1019. jbra L(mmu_init_done)
  1020. L(not16x):
  1021. #endif /* CONFIG_MVME162 | CONFIG_MVME167 */
  1022. #ifdef CONFIG_BVME6000
  1023. is_not_bvme6000(L(not6000))
  1024. /*
  1025.  * On BVME6000 we have already created kernel page tables for
  1026.  * 4MB of RAM at address 0, so now need to do a transparent
  1027.  * mapping of the top of memory space.  Make it 0.5GByte for now,
  1028.  * so we can access on-board i/o areas.
  1029.  * Supervisor only access, so transparent mapping doesn't
  1030.  * clash with User code virtual address space.
  1031.  */
  1032. mmu_map_tt #1,#0xe0000000,#0x20000000,#_PAGE_NOCACHE_S
  1033. jbra L(mmu_init_done)
  1034. L(not6000):
  1035. #endif /* CONFIG_BVME6000 */
  1036. /*
  1037.  * mmu_init_mac
  1038.  *
  1039.  * The Macintosh mappings are less clear.
  1040.  *
  1041.  * Even as of this writing, it is unclear how the
  1042.  * Macintosh mappings will be done.  However, as
  1043.  * the first author of this code I'm proposing the
  1044.  * following model:
  1045.  *
  1046.  * Map the kernel (that's already done),
  1047.  * Map the I/O (on most machines that's the
  1048.  * 0x5000.0000 ... 0x5200.0000 range,
  1049.  * Map the video frame buffer using as few pages
  1050.  * as absolutely (this requirement mostly stems from
  1051.  * the fact that when the frame buffer is at
  1052.  * 0x0000.0000 then we know there is valid RAM just
  1053.  * above the screen that we don't want to waste!).
  1054.  *
  1055.  * By the way, if the frame buffer is at 0x0000.0000
  1056.  * then the Macintosh is known as an RBV based Mac.
  1057.  *
  1058.  * By the way 2, the code currently maps in a bunch of
  1059.  * regions.  But I'd like to cut that out.  (And move most
  1060.  * of the mappings up into the kernel proper ... or only
  1061.  * map what's necessary.)
  1062.  */
  1063. #ifdef CONFIG_MAC
  1064. L(mmu_init_mac):
  1065. is_not_mac(L(mmu_init_not_mac))
  1066. putc 'F'
  1067. lea %pc@(L(mac_videobase)),%a0
  1068. lea %pc@(L(console_video_virtual)),%a1
  1069. movel %a0@,%a1@
  1070. is_not_040_or_060(1f)
  1071. moveq #_PAGE_NOCACHE_S,%d3
  1072. jbra 2f
  1073. 1:
  1074. moveq #_PAGE_NOCACHE030,%d3
  1075. 2:
  1076. /*
  1077.  * Mac Note: screen address of logical 0xF000.0000 -> <screen physical>
  1078.  *      we simply map the 4MB that contains the videomem
  1079.  */
  1080. movel #VIDEOMEMMASK,%d0
  1081. andl L(mac_videobase),%d0
  1082. mmu_map #VIDEOMEMBASE,%d0,#VIDEOMEMSIZE,%d3
  1083. mmu_map_eq #0x40800000,#0x02000000,%d3 /* rom ? */
  1084. mmu_map_eq #0x50000000,#0x02000000,%d3
  1085. mmu_map_eq #0x60000000,#0x00400000,%d3
  1086. mmu_map_eq #0x9c000000,#0x00400000,%d3
  1087. mmu_map_tt #1,#0xf8000000,#0x08000000,%d3
  1088. jbra L(mmu_init_done)
  1089. L(mmu_init_not_mac):
  1090. #endif
  1091. #ifdef CONFIG_SUN3X
  1092. is_not_sun3x(L(notsun3x))
  1093. /* oh, the pain..  We're gonna want the prom code after
  1094.  * starting the MMU, so we copy the mappings, translating
  1095.  * from 8k -> 4k pages as we go.
  1096.  */
  1097. /* copy maps from 0xfee00000 to 0xff000000 */
  1098. movel #0xfee00000, %d0
  1099. moveq #ROOT_INDEX_SHIFT, %d1
  1100. lsrl %d1,%d0
  1101. mmu_get_root_table_entry %d0
  1102. movel #0xfee00000, %d0
  1103. moveq #PTR_INDEX_SHIFT, %d1
  1104. lsrl %d1,%d0
  1105. andl #PTR_TABLE_SIZE-1, %d0
  1106. mmu_get_ptr_table_entry %a0,%d0
  1107. movel #0xfee00000, %d0
  1108. moveq #PAGE_INDEX_SHIFT, %d1
  1109. lsrl %d1,%d0
  1110. andl #PAGE_TABLE_SIZE-1, %d0
  1111. mmu_get_page_table_entry %a0,%d0
  1112. /* this is where the prom page table lives */
  1113. movel 0xfefe00d4, %a1
  1114. movel %a1@, %a1
  1115. movel #((0x200000 >> 13)-1), %d1
  1116. 1:
  1117. movel %a1@+, %d3
  1118. movel %d3,%a0@+
  1119. addl #0x1000,%d3
  1120. movel %d3,%a0@+
  1121. dbra %d1,1b
  1122. /* setup tt1 for I/O */
  1123. mmu_map_tt #1,#0x40000000,#0x40000000,#_PAGE_NOCACHE_S 
  1124. jbra L(mmu_init_done)
  1125. L(notsun3x):
  1126. #endif
  1127. #ifdef CONFIG_APOLLO
  1128. is_not_apollo(L(notapollo))
  1129. putc 'P'
  1130. mmu_map         #0x80000000,#0,#0x02000000,#_PAGE_NOCACHE030
  1131. L(notapollo):
  1132. jbra L(mmu_init_done)
  1133. #endif
  1134. L(mmu_init_done):
  1135. putc 'G'
  1136. leds 0x8
  1137. /*
  1138.  * mmu_fixup
  1139.  *
  1140.  * On the 040 class machines, all pages that are used for the
  1141.  * mmu have to be fixed up. According to Motorola, pages holding mmu
  1142.  * tables should be non-cacheable on a '040 and write-through on a
  1143.  * '060. But analysis of the reasons for this, and practical
  1144.  * experience, showed that write-through also works on a '040.
  1145.  *
  1146.  * Allocated memory so far goes from kernel_end to memory_start that
  1147.  * is used for all kind of tables, for that the cache attributes
  1148.  * are now fixed.
  1149.  */
  1150. L(mmu_fixup):
  1151. is_not_040_or_060(L(mmu_fixup_done))
  1152. #ifdef MMU_NOCACHE_KERNEL
  1153. jbra L(mmu_fixup_done)
  1154. #endif
  1155. /* first fix the page at the start of the kernel, that
  1156.          * contains also kernel_pg_dir.
  1157.  */
  1158. movel %pc@(L(phys_kernel_start)),%d0
  1159. subl #PAGE_OFFSET,%d0
  1160. lea %pc@(SYMBOL_NAME(_stext)),%a0
  1161. subl %d0,%a0
  1162. mmu_fixup_page_mmu_cache %a0
  1163. movel %pc@(L(kernel_end)),%a0
  1164. subl %d0,%a0
  1165. movel %pc@(L(memory_start)),%a1
  1166. subl %d0,%a1
  1167. bra 2f
  1168. 1:
  1169. mmu_fixup_page_mmu_cache %a0
  1170. addw #PAGESIZE,%a0
  1171. 2:
  1172. cmpl %a0,%a1
  1173. jgt 1b
  1174. L(mmu_fixup_done):
  1175. #ifdef MMU_PRINT
  1176. mmu_print
  1177. #endif
  1178. /*
  1179.  * mmu_engage
  1180.  *
  1181.  * This chunk of code performs the gruesome task of engaging the MMU.
  1182.  * The reason its gruesome is because when the MMU becomes engaged it
  1183.  * maps logical addresses to physical addresses.  The Program Counter
  1184.  * register is then passed through the MMU before the next instruction
  1185.  * is fetched (the instruction following the engage MMU instruction).
  1186.  * This may mean one of two things:
  1187.  * 1. The Program Counter falls within the logical address space of
  1188.  *    the kernel of which there are two sub-possibilities:
  1189.  *    A. The PC maps to the correct instruction (logical PC == physical
  1190.  *       code location), or
  1191.  *    B. The PC does not map through and the processor will read some
  1192.  *       data (or instruction) which is not the logically next instr.
  1193.  *    As you can imagine, A is good and B is bad.
  1194.  * Alternatively,
  1195.  * 2. The Program Counter does not map through the MMU.  The processor
  1196.  *    will take a Bus Error.
  1197.  * Clearly, 2 is bad.
  1198.  * It doesn't take a wiz kid to figure you want 1.A.
  1199.  * This code creates that possibility.
  1200.  * There are two possible 1.A. states (we now ignore the other above states):
  1201.  * A. The kernel is located at physical memory addressed the same as
  1202.  *    the logical memory for the kernel, i.e., 0x01000.
  1203.  * B. The kernel is located some where else.  e.g., 0x0400.0000
  1204.  *
  1205.  *    Under some conditions the Macintosh can look like A or B.
  1206.  * [A friend and I once noted that Apple hardware engineers should be
  1207.  * wacked twice each day: once when they show up at work (as in, Whack!,
  1208.  * "This is for the screwy hardware we know you're going to design today."),
  1209.  * and also at the end of the day (as in, Whack! "I don't know what
  1210.  * you designed today, but I'm sure it wasn't good."). -- rst]
  1211.  *
  1212.  * This code works on the following premise:
  1213.  * If the kernel start (%d5) is within the first 16 Meg of RAM,
  1214.  * then create a mapping for the kernel at logical 0x8000.0000 to
  1215.  * the physical location of the pc.  And, create a transparent
  1216.  * translation register for the first 16 Meg.  Then, after the MMU
  1217.  * is engaged, the PC can be moved up into the 0x8000.0000 range
  1218.  * and then the transparent translation can be turned off and then
  1219.  * the PC can jump to the correct logical location and it will be
  1220.  * home (finally).  This is essentially the code that the Amiga used
  1221.  * to use.  Now, it's generalized for all processors.  Which means
  1222.  * that a fresh (but temporary) mapping has to be created.  The mapping
  1223.  * is made in page 0 (an as of yet unused location -- except for the
  1224.  * stack!).  This temporary mapping will only require 1 pointer table
  1225.  * and a single page table (it can map 256K).
  1226.  *
  1227.  * OK, alternatively, imagine that the Program Counter is not within
  1228.  * the first 16 Meg.  Then, just use Transparent Translation registers
  1229.  * to do the right thing.
  1230.  *
  1231.  * Last, if _start is already at 0x01000, then there's nothing special
  1232.  * to do (in other words, in a degenerate case of the first case above,
  1233.  * do nothing).
  1234.  *
  1235.  * Let's do it.
  1236.  *
  1237.  *
  1238.  */
  1239. putc 'H'
  1240. mmu_engage
  1241. /*
  1242.  * After this point no new memory is allocated and
  1243.  * the start of available memory is stored in availmem.
  1244.  * (The bootmem allocator requires now the physicall address.)
  1245.  */
  1246. movel L(memory_start),availmem
  1247. #ifdef CONFIG_AMIGA
  1248. is_not_amiga(1f)
  1249. /* fixup the Amiga custom register location before printing */
  1250. clrl L(custom)
  1251. 1:
  1252. #endif
  1253. #ifdef CONFIG_ATARI
  1254. is_not_atari(1f)
  1255. /* fixup the Atari iobase register location before printing */
  1256. movel #0xff000000,L(iobase)
  1257. 1:
  1258. #endif
  1259. #ifdef CONFIG_MAC
  1260. is_not_mac(1f)
  1261. movel #~VIDEOMEMMASK,%d0
  1262. andl L(mac_videobase),%d0
  1263. addl #VIDEOMEMBASE,%d0
  1264. movel %d0,L(mac_videobase)
  1265. 1:
  1266. #endif
  1267. #ifdef CONFIG_HP300
  1268. is_not_hp300(1f)
  1269. /*
  1270.  * Fix up the custom register to point to the new location of the LEDs.
  1271.  */
  1272. movel #0xf0000000,L(custom)
  1273. /*
  1274.  * Energise the FPU and caches.
  1275.  */
  1276. movel #0x60,0xf05f400c
  1277. 1:
  1278. #endif
  1279. #ifdef CONFIG_SUN3X
  1280. is_not_sun3x(1f)
  1281. /* enable copro */
  1282. oriw #0x4000,0x61000000 
  1283. 1:
  1284. #endif
  1285. #ifdef CONFIG_APOLLO
  1286. is_not_apollo(1f)
  1287.         /*
  1288.  * Fix up the iobase before printing
  1289.          */
  1290.         movel   #0x80000000,L(iobase)
  1291. 1:
  1292. #endif
  1293. putc 'I'
  1294. leds 0x10
  1295. /*
  1296.  * Enable caches
  1297.  */
  1298. is_not_040_or_060(L(cache_not_680460))
  1299. L(cache680460):
  1300. .chip 68040
  1301. nop
  1302. cpusha %bc
  1303. nop
  1304. is_060(L(cache68060))
  1305. movel #CC6_ENABLE_D+CC6_ENABLE_I,%d0
  1306. /* MMU stuff works in copyback mode now, so enable the cache */
  1307. movec %d0,%cacr
  1308. jra L(cache_done)
  1309. L(cache68060):
  1310. movel #CC6_ENABLE_D+CC6_ENABLE_I+CC6_ENABLE_SB+CC6_PUSH_DPI+CC6_ENABLE_B+CC6_CLRA_B,%d0
  1311. /* MMU stuff works in copyback mode now, so enable the cache */
  1312. movec %d0,%cacr
  1313. /* enable superscalar dispatch in PCR */
  1314. moveq #1,%d0
  1315. .chip 68060
  1316. movec %d0,%pcr
  1317. jbra L(cache_done)
  1318. L(cache_not_680460):
  1319. L(cache68030):
  1320. .chip 68030
  1321. movel #CC3_ENABLE_DB+CC3_CLR_D+CC3_ENABLE_D+CC3_ENABLE_IB+CC3_CLR_I+CC3_ENABLE_I,%d0
  1322. movec %d0,%cacr
  1323. jra L(cache_done)
  1324. .chip 68k
  1325. L(cache_done):
  1326. putc 'J'
  1327. /*
  1328.  * Setup initial stack pointer
  1329.  */
  1330. lea SYMBOL_NAME(init_task_union),%curptr
  1331. lea 0x2000(%curptr),%sp
  1332. putc 'K'
  1333. subl %a6,%a6 /* clear a6 for gdb */
  1334. /*
  1335.  * The new 64bit printf support requires an early exception initialization.
  1336.  */
  1337. jbsr SYMBOL_NAME(base_trap_init)
  1338. /* jump to the kernel start */
  1339. putc 'n'
  1340. leds 0x55
  1341. jbsr SYMBOL_NAME(start_kernel)
  1342. /*
  1343.  * Find a tag record in the bootinfo structure
  1344.  * The bootinfo structure is located right after the kernel bss
  1345.  * Returns: d0: size (-1 if not found)
  1346.  *          a0: data pointer (end-of-records if not found)
  1347.  */
  1348. func_start get_bi_record,%d1
  1349. movel ARG1,%d0
  1350. lea %pc@(SYMBOL_NAME(_end)),%a0
  1351. #ifndef CONFIG_HP300
  1352. 1: tstw %a0@(BIR_TAG)
  1353. jeq 3f
  1354. cmpw %a0@(BIR_TAG),%d0
  1355. jeq 2f
  1356. addw %a0@(BIR_SIZE),%a0
  1357. jra 1b
  1358. 2: moveq #0,%d0
  1359. movew %a0@(BIR_SIZE),%d0
  1360. lea %a0@(BIR_DATA),%a0
  1361. jra 4f
  1362. 3: moveq #-1,%d0
  1363. lea %a0@(BIR_SIZE),%a0
  1364. 4:
  1365. #endif /* CONFIG_HP300 */
  1366. func_return get_bi_record
  1367. /*
  1368.  * MMU Initialization Begins Here
  1369.  *
  1370.  * The structure of the MMU tables on the 68k machines
  1371.  * is thus:
  1372.  * Root Table
  1373.  * Logical addresses are translated through
  1374.  * a hierarchical translation mechanism where the high-order
  1375.  * seven bits of the logical address (LA) are used as an
  1376.  * index into the "root table."  Each entry in the root
  1377.  * table has a bit which specifies if it's a valid pointer to a
  1378.  * pointer table.  Each entry defines a 32KMeg range of memory.
  1379.  * If an entry is invalid then that logical range of 32M is
  1380.  * invalid and references to that range of memory (when the MMU
  1381.  * is enabled) will fault.  If the entry is valid, then it does
  1382.  * one of two things.  On 040/060 class machines, it points to
  1383.  * a pointer table which then describes more finely the memory
  1384.  * within that 32M range.  On 020/030 class machines, a technique
  1385.  * called "early terminating descriptors" are used.  This technique
  1386.  * allows an entire 32Meg to be described by a single entry in the
  1387.  * root table.  Thus, this entry in the root table, contains the
  1388.  * physical address of the memory or I/O at the logical address
  1389.  * which the entry represents and it also contains the necessary
  1390.  * cache bits for this region.
  1391.  *
  1392.  * Pointer Tables
  1393.  * Per the Root Table, there will be one or more
  1394.  * pointer tables.  Each pointer table defines a 32M range.
  1395.  * Not all of the 32M range need be defined.  Again, the next
  1396.  * seven bits of the logical address are used an index into
  1397.  * the pointer table to point to page tables (if the pointer
  1398.  * is valid).  There will undoubtedly be more than one
  1399.  * pointer table for the kernel because each pointer table
  1400.  * defines a range of only 32M.  Valid pointer table entries
  1401.  * point to page tables, or are early terminating entries
  1402.  * themselves.
  1403.  *
  1404.  * Page Tables
  1405.  * Per the Pointer Tables, each page table entry points
  1406.  * to the physical page in memory that supports the logical
  1407.  * address that translates to the particular index.
  1408.  *
  1409.  * In short, the Logical Address gets translated as follows:
  1410.  * bits 31..26 - index into the Root Table
  1411.  * bits 25..18 - index into the Pointer Table
  1412.  * bits 17..12 - index into the Page Table
  1413.  * bits 11..0  - offset into a particular 4K page
  1414.  *
  1415.  * The algorithms which follows do one thing: they abstract
  1416.  * the MMU hardware.  For example, there are three kinds of
  1417.  * cache settings that are relevant.  Either, memory is
  1418.  * being mapped in which case it is either Kernel Code (or
  1419.  * the RamDisk) or it is MMU data.  On the 030, the MMU data
  1420.  * option also describes the kernel.  Or, I/O is being mapped
  1421.  * in which case it has its own kind of cache bits.  There
  1422.  * are constants which abstract these notions from the code that
  1423.  * actually makes the call to map some range of memory.
  1424.  *
  1425.  *
  1426.  *
  1427.  */
  1428. #ifdef MMU_PRINT
  1429. /*
  1430.  * mmu_print
  1431.  *
  1432.  * This algorithm will print out the current MMU mappings.
  1433.  *
  1434.  * Input:
  1435.  * %a5 points to the root table.  Everything else is calculated
  1436.  * from this.
  1437.  */
  1438. #define mmu_next_valid 0
  1439. #define mmu_start_logical 4
  1440. #define mmu_next_logical 8
  1441. #define mmu_start_physical 12
  1442. #define mmu_next_physical 16
  1443. #define MMU_PRINT_INVALID -1
  1444. #define MMU_PRINT_VALID 1
  1445. #define MMU_PRINT_UNINITED 0
  1446. #define putZc(z,n) jbne 1f; putc z; jbra 2f; 1: putc n; 2:
  1447. func_start mmu_print,%a0-%a6/%d0-%d7
  1448. movel %pc@(L(kernel_pgdir_ptr)),%a5
  1449. lea %pc@(L(mmu_print_data)),%a0
  1450. movel #MMU_PRINT_UNINITED,%a0@(mmu_next_valid)
  1451. is_not_040_or_060(mmu_030_print)
  1452. mmu_040_print:
  1453. puts "nMMU040n"
  1454. puts "rp:"
  1455. putn %a5
  1456. putc 'n'
  1457. #if 0
  1458. /*
  1459.  * The following #if/#endif block is a tight algorithm for dumping the 040
  1460.  * MMU Map in gory detail.  It really isn't that practical unless the
  1461.  * MMU Map algorithm appears to go awry and you need to debug it at the
  1462.  * entry per entry level.
  1463.  */
  1464. movel #ROOT_TABLE_SIZE,%d5
  1465. #if 0
  1466. movel %a5@+,%d7 | Burn an entry to skip the kernel mappings,
  1467. subql #1,%d5 | they (might) work
  1468. #endif
  1469. 1: tstl %d5
  1470. jbeq mmu_print_done
  1471. subq #1,%d5
  1472. movel %a5@+,%d7
  1473. btst #1,%d7
  1474. jbeq 1b
  1475. 2: putn %d7
  1476. andil #0xFFFFFE00,%d7
  1477. movel %d7,%a4
  1478. movel #PTR_TABLE_SIZE,%d4
  1479. putc ' '
  1480. 3: tstl %d4
  1481. jbeq 11f
  1482. subq #1,%d4
  1483. movel %a4@+,%d7
  1484. btst #1,%d7
  1485. jbeq 3b
  1486. 4: putn %d7
  1487. andil #0xFFFFFF00,%d7
  1488. movel %d7,%a3
  1489. movel #PAGE_TABLE_SIZE,%d3
  1490. 5: movel #8,%d2
  1491. 6: tstl %d3
  1492. jbeq 31f
  1493. subq #1,%d3
  1494. movel %a3@+,%d6
  1495. btst #0,%d6
  1496. jbeq 6b
  1497. 7: tstl %d2
  1498. jbeq 8f
  1499. subq #1,%d2
  1500. putc ' '
  1501. jbra 91f
  1502. 8: putc 'n'
  1503. movel #8+1+8+1+1,%d2
  1504. 9: putc ' '
  1505. dbra %d2,9b
  1506. movel #7,%d2
  1507. 91: putn %d6
  1508. jbra 6b
  1509. 31: putc 'n'
  1510. movel #8+1,%d2
  1511. 32: putc ' '
  1512. dbra %d2,32b
  1513. jbra 3b
  1514. 11: putc 'n'
  1515. jbra 1b
  1516. #endif /* MMU 040 Dumping code that's gory and detailed */
  1517. lea %pc@(SYMBOL_NAME(kernel_pg_dir)),%a5
  1518. movel %a5,%a0 /* a0 has the address of the root table ptr */
  1519. movel #0x00000000,%a4 /* logical address */
  1520. moveql #0,%d0
  1521. 40:
  1522. /* Increment the logical address and preserve in d5 */
  1523. movel %a4,%d5
  1524. addil #PAGESIZE<<13,%d5
  1525. movel %a0@+,%d6
  1526. btst #1,%d6
  1527. jbne 41f
  1528. jbsr mmu_print_tuple_invalidate
  1529. jbra 48f
  1530. 41:
  1531. movel #0,%d1
  1532. andil #0xfffffe00,%d6
  1533. movel %d6,%a1
  1534. 42:
  1535. movel %a4,%d5
  1536. addil #PAGESIZE<<6,%d5
  1537. movel %a1@+,%d6
  1538. btst #1,%d6
  1539. jbne 43f
  1540. jbsr mmu_print_tuple_invalidate
  1541. jbra 47f
  1542. 43:
  1543. movel #0,%d2
  1544. andil #0xffffff00,%d6
  1545. movel %d6,%a2
  1546. 44:
  1547. movel %a4,%d5
  1548. addil #PAGESIZE,%d5
  1549. movel %a2@+,%d6
  1550. btst #0,%d6
  1551. jbne 45f
  1552. jbsr mmu_print_tuple_invalidate
  1553. jbra 46f
  1554. 45:
  1555. moveml %d0-%d1,%sp@-
  1556. movel %a4,%d0
  1557. movel %d6,%d1
  1558. andil #0xfffff4e0,%d1
  1559. lea %pc@(mmu_040_print_flags),%a6
  1560. jbsr mmu_print_tuple
  1561. moveml %sp@+,%d0-%d1
  1562. 46:
  1563. movel %d5,%a4
  1564. addq #1,%d2
  1565. cmpib #64,%d2
  1566. jbne 44b
  1567. 47:
  1568. movel %d5,%a4
  1569. addq #1,%d1
  1570. cmpib #128,%d1
  1571. jbne 42b
  1572. 48:
  1573. movel %d5,%a4 /* move to the next logical address */
  1574. addq #1,%d0
  1575. cmpib #128,%d0
  1576. jbne 40b
  1577. .chip 68040
  1578. movec %dtt1,%d0
  1579. movel %d0,%d1
  1580. andiw #0x8000,%d1 /* is it valid ? */
  1581. jbeq 1f /* No, bail out */
  1582. movel %d0,%d1
  1583. andil #0xff000000,%d1 /* Get the address */
  1584. putn %d1
  1585. puts "=="
  1586. putn %d1
  1587. movel %d0,%d6
  1588. jbsr mmu_040_print_flags_tt
  1589. 1:
  1590. movec %dtt0,%d0
  1591. movel %d0,%d1
  1592. andiw #0x8000,%d1 /* is it valid ? */
  1593. jbeq 1f /* No, bail out */
  1594. movel %d0,%d1
  1595. andil #0xff000000,%d1 /* Get the address */
  1596. putn %d1
  1597. puts "=="
  1598. putn %d1
  1599. movel %d0,%d6
  1600. jbsr mmu_040_print_flags_tt
  1601. 1:
  1602. .chip 68k
  1603. jbra mmu_print_done
  1604. mmu_040_print_flags:
  1605. btstl #10,%d6
  1606. putZc(' ','G') /* global bit */
  1607. btstl #7,%d6
  1608. putZc(' ','S') /* supervisor bit */
  1609. mmu_040_print_flags_tt:
  1610. btstl #6,%d6
  1611. jbne 3f
  1612. putc 'C'
  1613. btstl #5,%d6
  1614. putZc('w','c') /* write through or copy-back */
  1615. jbra 4f
  1616. 3:
  1617. putc 'N'
  1618. btstl #5,%d6
  1619. putZc('s',' ') /* serialized non-cacheable, or non-cacheable */
  1620. 4:
  1621. rts
  1622. mmu_030_print_flags:
  1623. btstl #6,%d6
  1624. putZc('C','I') /* write through or copy-back */
  1625. rts
  1626. mmu_030_print:
  1627. puts "nMMU030n"
  1628. puts "nrp:"
  1629. putn %a5
  1630. putc 'n'
  1631. movel %a5,%d0
  1632. andil #0xfffffff0,%d0
  1633. movel %d0,%a0
  1634. movel #0x00000000,%a4 /* logical address */
  1635. movel #0,%d0
  1636. 30:
  1637. movel %a4,%d5
  1638. addil #PAGESIZE<<13,%d5
  1639. movel %a0@+,%d6
  1640. btst #1,%d6 /* is it a ptr? */
  1641. jbne 31f /* yes */
  1642. btst #0,%d6 /* is it early terminating? */
  1643. jbeq 1f /* no */
  1644. jbsr mmu_030_print_helper
  1645. jbra 38f
  1646. 1:
  1647. jbsr mmu_print_tuple_invalidate
  1648. jbra 38f
  1649. 31:
  1650. movel #0,%d1
  1651. andil #0xfffffff0,%d6
  1652. movel %d6,%a1
  1653. 32:
  1654. movel %a4,%d5
  1655. addil #PAGESIZE<<6,%d5
  1656. movel %a1@+,%d6
  1657. btst #1,%d6
  1658. jbne 33f
  1659. btst #0,%d6
  1660. jbeq 1f /* no */
  1661. jbsr mmu_030_print_helper
  1662. jbra 37f
  1663. 1:
  1664. jbsr mmu_print_tuple_invalidate
  1665. jbra 37f
  1666. 33:
  1667. movel #0,%d2
  1668. andil #0xfffffff0,%d6
  1669. movel %d6,%a2
  1670. 34:
  1671. movel %a4,%d5
  1672. addil #PAGESIZE,%d5
  1673. movel %a2@+,%d6
  1674. btst #0,%d6
  1675. jbne 35f
  1676. jbsr mmu_print_tuple_invalidate
  1677. jbra 36f
  1678. 35:
  1679. jbsr mmu_030_print_helper
  1680. 36:
  1681. movel %d5,%a4
  1682. addq #1,%d2
  1683. cmpib #64,%d2
  1684. jbne 34b
  1685. 37:
  1686. movel %d5,%a4
  1687. addq #1,%d1
  1688. cmpib #128,%d1
  1689. jbne 32b
  1690. 38:
  1691. movel %d5,%a4 /* move to the next logical address */
  1692. addq #1,%d0
  1693. cmpib #128,%d0
  1694. jbne 30b
  1695. mmu_print_done:
  1696. puts "nn"
  1697. func_return mmu_print
  1698. mmu_030_print_helper:
  1699. moveml %d0-%d1,%sp@-
  1700. movel %a4,%d0
  1701. movel %d6,%d1
  1702. lea %pc@(mmu_030_print_flags),%a6
  1703. jbsr mmu_print_tuple
  1704. moveml %sp@+,%d0-%d1
  1705. rts
  1706. mmu_print_tuple_invalidate:
  1707. moveml %a0/%d7,%sp@-
  1708. lea %pc@(L(mmu_print_data)),%a0
  1709. tstl %a0@(mmu_next_valid)
  1710. jbmi mmu_print_tuple_invalidate_exit
  1711. movel #MMU_PRINT_INVALID,%a0@(mmu_next_valid)
  1712. putn %a4
  1713. puts "##n"
  1714. mmu_print_tuple_invalidate_exit:
  1715. moveml %sp@+,%a0/%d7
  1716. rts
  1717. mmu_print_tuple:
  1718. moveml %d0-%d7/%a0,%sp@-
  1719. lea %pc@(L(mmu_print_data)),%a0
  1720. tstl %a0@(mmu_next_valid)
  1721. jble mmu_print_tuple_print
  1722. cmpl %a0@(mmu_next_physical),%d1
  1723. jbeq mmu_print_tuple_increment
  1724. mmu_print_tuple_print:
  1725. putn %d0
  1726. puts "->"
  1727. putn %d1
  1728. movel %d1,%d6
  1729. jbsr %a6@
  1730. mmu_print_tuple_record:
  1731. movel #MMU_PRINT_VALID,%a0@(mmu_next_valid)
  1732. movel %d1,%a0@(mmu_next_physical)
  1733. mmu_print_tuple_increment:
  1734. movel %d5,%d7
  1735. subl %a4,%d7
  1736. addl %d7,%a0@(mmu_next_physical)
  1737. mmu_print_tuple_exit:
  1738. moveml %sp@+,%d0-%d7/%a0
  1739. rts
  1740. mmu_print_machine_cpu_types:
  1741. puts "machine: "
  1742. is_not_amiga(1f)
  1743. puts "amiga"
  1744. jbra 9f
  1745. 1:
  1746. is_not_atari(2f)
  1747. puts "atari"
  1748. jbra 9f
  1749. 2:
  1750. is_not_mac(3f)
  1751. puts "macintosh"
  1752. jbra 9f
  1753. 3: puts "unknown"
  1754. 9: putc 'n'
  1755. puts "cputype: 0"
  1756. is_not_060(1f)
  1757. putc '6'
  1758. jbra 9f
  1759. 1:
  1760. is_not_040_or_060(2f)
  1761. putc '4'
  1762. jbra 9f
  1763. 2: putc '3'
  1764. 9: putc '0'
  1765. putc 'n'
  1766. rts
  1767. #endif /* MMU_PRINT */
  1768. /*
  1769.  * mmu_map_tt
  1770.  *
  1771.  * This is a specific function which works on all 680x0 machines.
  1772.  * On 030, 040 & 060 it will attempt to use Transparent Translation
  1773.  * registers (tt1).
  1774.  * On 020 it will call the standard mmu_map which will use early
  1775.  * terminating descriptors.
  1776.  */
  1777. func_start mmu_map_tt,%d0/%d1/%a0,4
  1778. dputs "mmu_map_tt:"
  1779. dputn ARG1
  1780. dputn ARG2
  1781. dputn ARG3
  1782. dputn ARG4
  1783. dputc 'n'
  1784. is_020(L(do_map))
  1785. /* Extract the highest bit set
  1786.  */
  1787. bfffo ARG3{#0,#32},%d1
  1788. cmpw #8,%d1
  1789. jcc L(do_map)
  1790. /* And get the mask
  1791.  */
  1792. moveq #-1,%d0
  1793. lsrl %d1,%d0
  1794. lsrl #1,%d0
  1795. /* Mask the address
  1796.  */
  1797. movel %d0,%d1
  1798. notl %d1
  1799. andl ARG2,%d1
  1800. /* Generate the upper 16bit of the tt register
  1801.  */
  1802. lsrl #8,%d0
  1803. orl %d0,%d1
  1804. clrw %d1
  1805. is_040_or_060(L(mmu_map_tt_040))
  1806. /* set 030 specific bits (read/write access for supervisor mode
  1807.  * (highest function code set, lower two bits masked))
  1808.  */
  1809. orw #TTR_ENABLE+TTR_RWM+TTR_FCB2+TTR_FCM1+TTR_FCM0,%d1
  1810. movel ARG4,%d0
  1811. btst #6,%d0
  1812. jeq 1f
  1813. orw #TTR_CI,%d1
  1814. 1: lea STACK,%a0
  1815. dputn %d1
  1816. movel %d1,%a0@
  1817. .chip 68030
  1818. tstl ARG1
  1819. jne 1f
  1820. pmove %a0@,%tt0
  1821. jra 2f
  1822. 1: pmove %a0@,%tt1
  1823. 2: .chip 68k
  1824. jra L(mmu_map_tt_done)
  1825. /* set 040 specific bits
  1826.  */
  1827. L(mmu_map_tt_040):
  1828. orw #TTR_ENABLE+TTR_KERNELMODE,%d1
  1829. orl ARG4,%d1
  1830. dputn %d1
  1831. .chip 68040
  1832. tstl ARG1
  1833. jne 1f
  1834. movec %d1,%itt0
  1835. movec %d1,%dtt0
  1836. jra 2f
  1837. 1: movec %d1,%itt1
  1838. movec %d1,%dtt1
  1839. 2: .chip 68k
  1840. jra L(mmu_map_tt_done)
  1841. L(do_map):
  1842. mmu_map_eq ARG2,ARG3,ARG4
  1843. L(mmu_map_tt_done):
  1844. func_return mmu_map_tt
  1845. /*
  1846.  * mmu_map
  1847.  *
  1848.  * This routine will map a range of memory using a pointer
  1849.  * table and allocating the pages on the fly from the kernel.
  1850.  * The pointer table does not have to be already linked into
  1851.  * the root table, this routine will do that if necessary.
  1852.  *
  1853.  * NOTE
  1854.  * This routine will assert failure and use the serial_putc
  1855.  * routines in the case of a run-time error.  For example,
  1856.  * if the address is already mapped.
  1857.  *
  1858.  * NOTE-2
  1859.  * This routine will use early terminating descriptors
  1860.  * where possible for the 68020+68851 and 68030 type
  1861.  * processors.
  1862.  */
  1863. func_start mmu_map,%d0-%d4/%a0-%a4
  1864. dputs "nmmu_map:"
  1865. dputn ARG1
  1866. dputn ARG2
  1867. dputn ARG3
  1868. dputn ARG4
  1869. dputc 'n'
  1870. /* Get logical address and round it down to 256KB
  1871.  */
  1872. movel ARG1,%d0
  1873. andl #-(PAGESIZE*PAGE_TABLE_SIZE),%d0
  1874. movel %d0,%a3
  1875. /* Get the end address
  1876.  */
  1877. movel ARG1,%a4
  1878. addl ARG3,%a4
  1879. subql #1,%a4
  1880. /* Get physical address and round it down to 256KB
  1881.  */
  1882. movel ARG2,%d0
  1883. andl #-(PAGESIZE*PAGE_TABLE_SIZE),%d0
  1884. movel %d0,%a2
  1885. /* Add page attributes to the physical address
  1886.  */
  1887. movel ARG4,%d0
  1888. orw #_PAGE_PRESENT+_PAGE_ACCESSED+_PAGE_DIRTY,%d0
  1889. addw %d0,%a2
  1890. dputn %a2
  1891. dputn %a3
  1892. dputn %a4
  1893. is_not_040_or_060(L(mmu_map_030))
  1894. addw #_PAGE_GLOBAL040,%a2
  1895. /*
  1896.  * MMU 040 & 060 Support
  1897.  *
  1898.  * The MMU usage for the 040 and 060 is different enough from
  1899.  * the 030 and 68851 that there is separate code.  This comment
  1900.  * block describes the data structures and algorithms built by
  1901.  * this code.
  1902.  *
  1903.  * The 040 does not support early terminating descriptors, as
  1904.  * the 030 does.  Therefore, a third level of table is needed
  1905.  * for the 040, and that would be the page table.  In Linux,
  1906.  * page tables are allocated directly from the memory above the
  1907.  * kernel.
  1908.  *
  1909.  */
  1910. L(mmu_map_040):
  1911. /* Calculate the offset into the root table
  1912.  */
  1913. movel %a3,%d0
  1914. moveq #ROOT_INDEX_SHIFT,%d1
  1915. lsrl %d1,%d0
  1916. mmu_get_root_table_entry %d0
  1917. /* Calculate the offset into the pointer table
  1918.  */
  1919. movel %a3,%d0
  1920. moveq #PTR_INDEX_SHIFT,%d1
  1921. lsrl %d1,%d0
  1922. andl #PTR_TABLE_SIZE-1,%d0
  1923. mmu_get_ptr_table_entry %a0,%d0
  1924. /* Calculate the offset into the page table
  1925.  */
  1926. movel %a3,%d0
  1927. moveq #PAGE_INDEX_SHIFT,%d1
  1928. lsrl %d1,%d0
  1929. andl #PAGE_TABLE_SIZE-1,%d0
  1930. mmu_get_page_table_entry %a0,%d0
  1931. /* The page table entry must not no be busy
  1932.  */
  1933. tstl %a0@
  1934. jne L(mmu_map_error)
  1935. /* Do the mapping and advance the pointers
  1936.  */
  1937. movel %a2,%a0@
  1938. 2:
  1939. addw #PAGESIZE,%a2
  1940. addw #PAGESIZE,%a3
  1941. /* Ready with mapping?
  1942.  */
  1943. lea %a3@(-1),%a0
  1944. cmpl %a0,%a4
  1945. jhi L(mmu_map_040)
  1946. jra L(mmu_map_done)
  1947. L(mmu_map_030):
  1948. /* Calculate the offset into the root table
  1949.  */
  1950. movel %a3,%d0
  1951. moveq #ROOT_INDEX_SHIFT,%d1
  1952. lsrl %d1,%d0
  1953. mmu_get_root_table_entry %d0
  1954. /* Check if logical address 32MB aligned,
  1955.  * so we can try to map it once
  1956.  */
  1957. movel %a3,%d0
  1958. andl #(PTR_TABLE_SIZE*PAGE_TABLE_SIZE*PAGESIZE-1)&(-ROOT_TABLE_SIZE),%d0
  1959. jne 1f
  1960. /* Is there enough to map for 32MB at once
  1961.  */
  1962. lea %a3@(PTR_TABLE_SIZE*PAGE_TABLE_SIZE*PAGESIZE-1),%a1
  1963. cmpl %a1,%a4
  1964. jcs 1f
  1965. addql #1,%a1
  1966. /* The root table entry must not no be busy
  1967.  */
  1968. tstl %a0@
  1969. jne L(mmu_map_error)
  1970. /* Do the mapping and advance the pointers
  1971.  */
  1972. dputs "early term1"
  1973. dputn %a2
  1974. dputn %a3
  1975. dputn %a1
  1976. dputc 'n'
  1977. movel %a2,%a0@
  1978. movel %a1,%a3
  1979. lea %a2@(PTR_TABLE_SIZE*PAGE_TABLE_SIZE*PAGESIZE),%a2
  1980. jra L(mmu_mapnext_030)
  1981. 1:
  1982. /* Calculate the offset into the pointer table
  1983.  */
  1984. movel %a3,%d0
  1985. moveq #PTR_INDEX_SHIFT,%d1
  1986. lsrl %d1,%d0
  1987. andl #PTR_TABLE_SIZE-1,%d0
  1988. mmu_get_ptr_table_entry %a0,%d0
  1989. /* The pointer table entry must not no be busy
  1990.  */
  1991. tstl %a0@
  1992. jne L(mmu_map_error)
  1993. /* Do the mapping and advance the pointers
  1994.  */
  1995. dputs "early term2"
  1996. dputn %a2
  1997. dputn %a3
  1998. dputc 'n'
  1999. movel %a2,%a0@
  2000. addl #PAGE_TABLE_SIZE*PAGESIZE,%a2
  2001. addl #PAGE_TABLE_SIZE*PAGESIZE,%a3
  2002. L(mmu_mapnext_030):
  2003. /* Ready with mapping?
  2004.  */
  2005. lea %a3@(-1),%a0
  2006. cmpl %a0,%a4
  2007. jhi L(mmu_map_030)
  2008. jra L(mmu_map_done)
  2009. L(mmu_map_error):
  2010. dputs "mmu_map error:"
  2011. dputn %a2
  2012. dputn %a3
  2013. dputc 'n'
  2014. L(mmu_map_done):
  2015. func_return mmu_map
  2016. /*
  2017.  * mmu_fixup
  2018.  *
  2019.  * On the 040 class machines, all pages that are used for the
  2020.  * mmu have to be fixed up.
  2021.  */
  2022. func_start mmu_fixup_page_mmu_cache,%d0/%a0
  2023. dputs "mmu_fixup_page_mmu_cache"
  2024. dputn ARG1
  2025. /* Calculate the offset into the root table
  2026.  */
  2027. movel ARG1,%d0
  2028. moveq #ROOT_INDEX_SHIFT,%d1
  2029. lsrl %d1,%d0
  2030. mmu_get_root_table_entry %d0
  2031. /* Calculate the offset into the pointer table
  2032.  */
  2033. movel ARG1,%d0
  2034. moveq #PTR_INDEX_SHIFT,%d1
  2035. lsrl %d1,%d0
  2036. andl #PTR_TABLE_SIZE-1,%d0
  2037. mmu_get_ptr_table_entry %a0,%d0
  2038. /* Calculate the offset into the page table
  2039.  */
  2040. movel ARG1,%d0
  2041. moveq #PAGE_INDEX_SHIFT,%d1
  2042. lsrl %d1,%d0
  2043. andl #PAGE_TABLE_SIZE-1,%d0
  2044. mmu_get_page_table_entry %a0,%d0
  2045. movel %a0@,%d0
  2046. andil #_CACHEMASK040,%d0
  2047. orl %pc@(SYMBOL_NAME(m68k_pgtable_cachemode)),%d0
  2048. movel %d0,%a0@
  2049. dputc 'n'
  2050. func_return mmu_fixup_page_mmu_cache
  2051. /*
  2052.  * mmu_temp_map
  2053.  *
  2054.  * create a temporary mapping to enable the mmu,
  2055.  * this we don't need any transparation translation tricks.
  2056.  */
  2057. func_start mmu_temp_map,%d0/%d1/%a0/%a1
  2058. dputs "mmu_temp_map"
  2059. dputn ARG1
  2060. dputn ARG2
  2061. dputc 'n'
  2062. lea %pc@(L(temp_mmap_mem)),%a1
  2063. /* Calculate the offset in the root table
  2064.  */
  2065. movel ARG2,%d0
  2066. moveq #ROOT_INDEX_SHIFT,%d1
  2067. lsrl %d1,%d0
  2068. mmu_get_root_table_entry %d0
  2069. /* Check if the table is temporary allocated, so we have to reuse it
  2070.  */
  2071. movel %a0@,%d0
  2072. cmpl %pc@(L(memory_start)),%d0
  2073. jcc 1f
  2074. /* Temporary allocate a ptr table and insert it into the root table
  2075.  */
  2076. movel %a1@,%d0
  2077. addl #PTR_TABLE_SIZE*4,%a1@
  2078. orw #_PAGE_TABLE+_PAGE_ACCESSED,%d0
  2079. movel %d0,%a0@
  2080. dputs " (new)"
  2081. 1:
  2082. dputn %d0
  2083. /* Mask the root table entry for the ptr table
  2084.  */
  2085. andw #-ROOT_TABLE_SIZE,%d0
  2086. movel %d0,%a0
  2087. /* Calculate the offset into the pointer table
  2088.  */
  2089. movel ARG2,%d0
  2090. moveq #PTR_INDEX_SHIFT,%d1
  2091. lsrl %d1,%d0
  2092. andl #PTR_TABLE_SIZE-1,%d0
  2093. lea %a0@(%d0*4),%a0
  2094. dputn %a0
  2095. /* Check if a temporary page table is already allocated
  2096.  */
  2097. movel %a0@,%d0
  2098. jne 1f
  2099. /* Temporary allocate a page table and insert it into the ptr table
  2100.  */
  2101. movel %a1@,%d0
  2102. /* The 512 should be PAGE_TABLE_SIZE*4, but that violates the
  2103.    alignment restriction for pointer tables on the '0[46]0.  */
  2104. addl #512,%a1@
  2105. orw #_PAGE_TABLE+_PAGE_ACCESSED,%d0
  2106. movel %d0,%a0@
  2107. dputs " (new)"
  2108. 1:
  2109. dputn %d0
  2110. /* Mask the ptr table entry for the page table
  2111.  */
  2112. andw #-PTR_TABLE_SIZE,%d0
  2113. movel %d0,%a0
  2114. /* Calculate the offset into the page table
  2115.  */
  2116. movel ARG2,%d0
  2117. moveq #PAGE_INDEX_SHIFT,%d1
  2118. lsrl %d1,%d0
  2119. andl #PAGE_TABLE_SIZE-1,%d0
  2120. lea %a0@(%d0*4),%a0
  2121. dputn %a0
  2122. /* Insert the address into the page table
  2123.  */
  2124. movel ARG1,%d0
  2125. andw #-PAGESIZE,%d0
  2126. orw #_PAGE_PRESENT+_PAGE_ACCESSED+_PAGE_DIRTY,%d0
  2127. movel %d0,%a0@
  2128. dputn %d0
  2129. dputc 'n'
  2130. func_return mmu_temp_map
  2131. func_start mmu_engage,%d0-%d2/%a0-%a3
  2132. moveq #ROOT_TABLE_SIZE-1,%d0
  2133. /* Temporarily use a different root table.  */
  2134. lea %pc@(L(kernel_pgdir_ptr)),%a0
  2135. movel %a0@,%a2
  2136. movel %pc@(L(memory_start)),%a1
  2137. movel %a1,%a0@
  2138. movel %a2,%a0
  2139. 1:
  2140. movel %a0@+,%a1@+
  2141. dbra %d0,1b
  2142. lea %pc@(L(temp_mmap_mem)),%a0
  2143. movel %a1,%a0@
  2144. movew #PAGESIZE-1,%d0
  2145. 1:
  2146. clrl %a1@+
  2147. dbra %d0,1b
  2148. lea %pc@(1b),%a0
  2149. movel #1b,%a1
  2150. /* Skip temp mappings if phys == virt */
  2151. cmpl %a0,%a1
  2152. jeq 1f
  2153. mmu_temp_map %a0,%a0
  2154. mmu_temp_map %a0,%a1
  2155. addw #PAGESIZE,%a0
  2156. addw #PAGESIZE,%a1
  2157. mmu_temp_map %a0,%a0
  2158. mmu_temp_map %a0,%a1
  2159. 1:
  2160. movel %pc@(L(memory_start)),%a3
  2161. movel %pc@(L(phys_kernel_start)),%d2
  2162. is_not_040_or_060(L(mmu_engage_030))
  2163. L(mmu_engage_040):
  2164. .chip 68040
  2165. nop
  2166. cinva %bc
  2167. nop
  2168. pflusha
  2169. nop
  2170. movec %a3,%srp
  2171. movel #TC_ENABLE+TC_PAGE4K,%d0
  2172. movec %d0,%tc /* enable the MMU */
  2173. jmp 1f:l
  2174. 1: nop
  2175. movec %a2,%srp
  2176. nop
  2177. cinva %bc
  2178. nop
  2179. pflusha
  2180. .chip 68k
  2181. jra L(mmu_engage_cleanup)
  2182. L(mmu_engage_030_temp):
  2183. .space 12
  2184. L(mmu_engage_030):
  2185. .chip 68030
  2186. lea %pc@(L(mmu_engage_030_temp)),%a0
  2187. movel #0x80000002,%a0@
  2188. movel %a3,%a0@(4)
  2189. movel #0x0808,%d0
  2190. movec %d0,%cacr
  2191. pmove %a0@,%srp
  2192. pflusha
  2193. /*
  2194.  * enable,super root enable,4096 byte pages,7 bit root index,
  2195.  * 7 bit pointer index, 6 bit page table index.
  2196.  */
  2197. movel #0x82c07760,%a0@(8)
  2198. pmove %a0@(8),%tc /* enable the MMU */
  2199. jmp 1f:l
  2200. 1: movel %a2,%a0@(4)
  2201. movel #0x0808,%d0
  2202. movec %d0,%cacr
  2203. pmove %a0@,%srp
  2204. pflusha
  2205. .chip 68k
  2206. L(mmu_engage_cleanup):
  2207. subl #PAGE_OFFSET,%d2
  2208. subl %d2,%a2
  2209. movel %a2,L(kernel_pgdir_ptr)
  2210. subl %d2,%fp
  2211. subl %d2,%sp
  2212. subl %d2,ARG0
  2213. func_return mmu_engage
  2214. func_start mmu_get_root_table_entry,%d0/%a1
  2215. #if 0
  2216. dputs "mmu_get_root_table_entry:"
  2217. dputn ARG1
  2218. dputs " ="
  2219. #endif
  2220. movel %pc@(L(kernel_pgdir_ptr)),%a0
  2221. tstl %a0
  2222. jne 2f
  2223. dputs "nmmu_init:"
  2224. /* Find the start of free memory, get_bi_record does this for us,
  2225.  * as the bootinfo structure is located directly behind the kernel
  2226.  * and and we simply search for the last entry.
  2227.  */
  2228. get_bi_record BI_LAST
  2229. addw #PAGESIZE-1,%a0
  2230. movel %a0,%d0
  2231. andw #-PAGESIZE,%d0
  2232. dputn %d0
  2233. lea %pc@(L(memory_start)),%a0
  2234. movel %d0,%a0@
  2235. lea %pc@(L(kernel_end)),%a0
  2236. movel %d0,%a0@
  2237. /* we have to return the first page at _stext since the init code
  2238.  * in mm/init.c simply expects kernel_pg_dir there, the rest of
  2239.  * page is used for further ptr tables in get_ptr_table.
  2240.  */
  2241. lea %pc@(SYMBOL_NAME(_stext)),%a0
  2242. lea %pc@(L(mmu_cached_pointer_tables)),%a1
  2243. movel %a0,%a1@
  2244. addl #ROOT_TABLE_SIZE*4,%a1@
  2245. lea %pc@(L(mmu_num_pointer_tables)),%a1
  2246. addql #1,%a1@
  2247. /* clear the page
  2248.  */
  2249. movel %a0,%a1
  2250. movew #PAGESIZE/4-1,%d0
  2251. 1:
  2252. clrl %a1@+
  2253. dbra %d0,1b
  2254. lea %pc@(L(kernel_pgdir_ptr)),%a1
  2255. movel %a0,%a1@
  2256. dputn %a0
  2257. dputc 'n'
  2258. 2:
  2259. movel ARG1,%d0
  2260. lea %a0@(%d0*4),%a0
  2261. #if 0
  2262. dputn %a0
  2263. dputc 'n'
  2264. #endif
  2265. func_return mmu_get_root_table_entry
  2266. func_start mmu_get_ptr_table_entry,%d0/%a1
  2267. #if 0
  2268. dputs "mmu_get_ptr_table_entry:"
  2269. dputn ARG1
  2270. dputn ARG2
  2271. dputs " ="
  2272. #endif
  2273. movel ARG1,%a0
  2274. movel %a0@,%d0
  2275. jne 2f
  2276. /* Keep track of the number of pointer tables we use
  2277.  */
  2278. dputs "nmmu_get_new_ptr_table:"
  2279. lea %pc@(L(mmu_num_pointer_tables)),%a0
  2280. movel %a0@,%d0
  2281. addql #1,%a0@
  2282. /* See if there is a free pointer table in our cache of pointer tables
  2283.  */
  2284. lea %pc@(L(mmu_cached_pointer_tables)),%a1
  2285. andw #7,%d0
  2286. jne 1f
  2287. /* Get a new pointer table page from above the kernel memory
  2288.  */
  2289. get_new_page
  2290. movel %a0,%a1@
  2291. 1:
  2292. /* There is an unused pointer table in our cache... use it
  2293.  */
  2294. movel %a1@,%d0
  2295. addl #PTR_TABLE_SIZE*4,%a1@
  2296. dputn %d0
  2297. dputc 'n'
  2298. /* Insert the new pointer table into the root table
  2299.  */
  2300. movel ARG1,%a0
  2301. orw #_PAGE_TABLE+_PAGE_ACCESSED,%d0
  2302. movel %d0,%a0@
  2303. 2:
  2304. /* Extract the pointer table entry
  2305.  */
  2306. andw #-PTR_TABLE_SIZE,%d0
  2307. movel %d0,%a0
  2308. movel ARG2,%d0
  2309. lea %a0@(%d0*4),%a0
  2310. #if 0
  2311. dputn %a0
  2312. dputc 'n'
  2313. #endif
  2314. func_return mmu_get_ptr_table_entry
  2315. func_start mmu_get_page_table_entry,%d0/%a1
  2316. #if 0
  2317. dputs "mmu_get_page_table_entry:"
  2318. dputn ARG1
  2319. dputn ARG2
  2320. dputs " ="
  2321. #endif
  2322. movel ARG1,%a0
  2323. movel %a0@,%d0
  2324. jne 2f
  2325. /* If the page table entry doesn't exist, we allocate a complete new
  2326.  * page and use it as one continues big page table which can cover
  2327.  * 4MB of memory, nearly almost all mappings have that alignment.
  2328.  */
  2329. get_new_page
  2330. addw #_PAGE_TABLE+_PAGE_ACCESSED,%a0
  2331. /* align pointer table entry for a page of page tables
  2332.  */
  2333. movel ARG1,%d0
  2334. andw #-(PAGESIZE/PAGE_TABLE_SIZE),%d0
  2335. movel %d0,%a1
  2336. /* Insert the page tables into the pointer entries
  2337.  */
  2338. moveq #PAGESIZE/PAGE_TABLE_SIZE/4-1,%d0
  2339. 1:
  2340. movel %a0,%a1@+
  2341. lea %a0@(PAGE_TABLE_SIZE*4),%a0
  2342. dbra %d0,1b
  2343. /* Now we can get the initialized pointer table entry
  2344.  */
  2345. movel ARG1,%a0
  2346. movel %a0@,%d0
  2347. 2:
  2348. /* Extract the page table entry
  2349.  */
  2350. andw #-PAGE_TABLE_SIZE,%d0
  2351. movel %d0,%a0
  2352. movel ARG2,%d0
  2353. lea %a0@(%d0*4),%a0
  2354. #if 0
  2355. dputn %a0
  2356. dputc 'n'
  2357. #endif
  2358. func_return mmu_get_page_table_entry
  2359. /*
  2360.  * get_new_page
  2361.  *
  2362.  * Return a new page from the memory start and clear it.
  2363.  */
  2364. func_start get_new_page,%d0/%a1
  2365. dputs "nget_new_page:"
  2366. /* allocate the page and adjust memory_start
  2367.  */
  2368. lea %pc@(L(memory_start)),%a0
  2369. movel %a0@,%a1
  2370. addl #PAGESIZE,%a0@
  2371. /* clear the new page
  2372.  */
  2373. movel %a1,%a0
  2374. movew #PAGESIZE/4-1,%d0
  2375. 1:
  2376. clrl %a1@+
  2377. dbra %d0,1b
  2378. dputn %a0
  2379. dputc 'n'
  2380. func_return get_new_page
  2381. /*
  2382.  * Debug output support
  2383.  * Atarians have a choice between the parallel port, the serial port
  2384.  * from the MFP or a serial port of the SCC
  2385.  */
  2386. #ifdef CONFIG_MAC
  2387. L(scc_initable_mac):
  2388. .byte 9,12 /* Reset */
  2389. .byte 4,0x44 /* x16, 1 stopbit, no parity */
  2390. .byte 3,0xc0 /* receiver: 8 bpc */
  2391. .byte 5,0xe2 /* transmitter: 8 bpc, assert dtr/rts */
  2392. .byte 9,0 /* no interrupts */
  2393. .byte 10,0 /* NRZ */
  2394. .byte 11,0x50 /* use baud rate generator */
  2395. .byte 12,10,13,0 /* 9600 baud */
  2396. .byte 14,1 /* Baud rate generator enable */
  2397. .byte 3,0xc1 /* enable receiver */
  2398. .byte 5,0xea /* enable transmitter */
  2399. .byte -1
  2400. .even
  2401. #endif
  2402. #ifdef CONFIG_ATARI
  2403. /* #define USE_PRINTER */
  2404. /* #define USE_SCC_B */
  2405. /* #define USE_SCC_A */
  2406. #define USE_MFP
  2407. #if defined(USE_SCC_A) || defined(USE_SCC_B)
  2408. #define USE_SCC
  2409. /* Initialisation table for SCC */
  2410. L(scc_initable):
  2411. .byte 9,12 /* Reset */
  2412. .byte 4,0x44 /* x16, 1 stopbit, no parity */
  2413. .byte 3,0xc0 /* receiver: 8 bpc */
  2414. .byte 5,0xe2 /* transmitter: 8 bpc, assert dtr/rts */
  2415. .byte 9,0 /* no interrupts */
  2416. .byte 10,0 /* NRZ */
  2417. .byte 11,0x50 /* use baud rate generator */
  2418. .byte 12,24,13,0 /* 9600 baud */
  2419. .byte 14,2,14,3 /* use master clock for BRG, enable */
  2420. .byte 3,0xc1 /* enable receiver */
  2421. .byte 5,0xea /* enable transmitter */
  2422. .byte -1
  2423. .even
  2424. #endif
  2425. #ifdef USE_PRINTER
  2426. LPSG_SELECT = 0xff8800
  2427. LPSG_READ = 0xff8800
  2428. LPSG_WRITE = 0xff8802
  2429. LPSG_IO_A = 14
  2430. LPSG_IO_B = 15
  2431. LPSG_CONTROL = 7
  2432. LSTMFP_GPIP = 0xfffa01
  2433. LSTMFP_DDR = 0xfffa05
  2434. LSTMFP_IERB = 0xfffa09
  2435. #elif defined(USE_SCC_B)
  2436. LSCC_CTRL = 0xff8c85
  2437. LSCC_DATA = 0xff8c87
  2438. #elif defined(USE_SCC_A)
  2439. LSCC_CTRL = 0xff8c81
  2440. LSCC_DATA = 0xff8c83
  2441. /* Initialisation table for SCC */
  2442. L(scc_initable):
  2443. .byte 9,12 /* Reset */
  2444. .byte 4,0x44 /* x16, 1 stopbit, no parity */
  2445. .byte 3,0xc0 /* receiver: 8 bpc */
  2446. .byte 5,0xe2 /* transmitter: 8 bpc, assert dtr/rts */
  2447. .byte 9,0 /* no interrupts */
  2448. .byte 10,0 /* NRZ */
  2449. .byte 11,0x50 /* use baud rate generator */
  2450. .byte 12,24,13,0 /* 9600 baud */
  2451. .byte 14,2,14,3 /* use master clock for BRG, enable */
  2452. .byte 3,0xc1 /* enable receiver */
  2453. .byte 5,0xea /* enable transmitter */
  2454. .byte -1
  2455. .even
  2456. #elif defined(USE_MFP)
  2457. LMFP_UCR     = 0xfffa29
  2458. LMFP_TDCDR   = 0xfffa1d
  2459. LMFP_TDDR    = 0xfffa25
  2460. LMFP_TSR     = 0xfffa2d
  2461. LMFP_UDR     = 0xfffa2f
  2462. #endif
  2463. #endif /* CONFIG_ATARI */
  2464. /*
  2465.  * Serial port output support.
  2466.  */
  2467. /*
  2468.  * Initialize serial port hardware for 9600/8/1
  2469.  */
  2470. func_start serial_init,%d0/%d1/%a0/%a1
  2471. /*
  2472.  * Some of the register usage that follows
  2473.  * CONFIG_AMIGA
  2474.  * a0 = pointer to boot info record
  2475.  * d0 = boot info offset
  2476.  * CONFIG_ATARI
  2477.  * a0 = address of SCC
  2478.  * a1 = Liobase address/address of scc_initable
  2479.  * d0 = init data for serial port
  2480.  * CONFIG_MAC
  2481.  * a0 = address of SCC
  2482.  * a1 = address of scc_initable_mac
  2483.  * d0 = init data for serial port
  2484.  */
  2485. #ifdef CONFIG_AMIGA
  2486. #define SERIAL_DTR 7
  2487. #define SERIAL_CNTRL CIABBASE+C_PRA
  2488. is_not_amiga(1f)
  2489. lea %pc@(L(custom)),%a0
  2490. movel #-ZTWOBASE,%a0@
  2491. bclr #SERIAL_DTR,SERIAL_CNTRL-ZTWOBASE
  2492. get_bi_record BI_AMIGA_SERPER
  2493. movew %a0@,CUSTOMBASE+C_SERPER-ZTWOBASE
  2494. | movew #61,CUSTOMBASE+C_SERPER-ZTWOBASE
  2495. 1:
  2496. #endif
  2497. #ifdef CONFIG_ATARI
  2498. is_not_atari(4f)
  2499. movel %pc@(L(iobase)),%a1
  2500. #if defined(USE_PRINTER)
  2501. bclr #0,%a1@(LSTMFP_IERB)
  2502. bclr #0,%a1@(LSTMFP_DDR)
  2503. moveb #LPSG_CONTROL,%a1@(LPSG_SELECT)
  2504. moveb #0xff,%a1@(LPSG_WRITE)
  2505. moveb #LPSG_IO_B,%a1@(LPSG_SELECT)
  2506. clrb %a1@(LPSG_WRITE)
  2507. moveb #LPSG_IO_A,%a1@(LPSG_SELECT)
  2508. moveb %a1@(LPSG_READ),%d0
  2509. bset #5,%d0
  2510. moveb %d0,%a1@(LPSG_WRITE)
  2511. #elif defined(USE_SCC)
  2512. lea %a1@(LSCC_CTRL),%a0
  2513. lea %pc@(L(scc_initable)),%a1
  2514. 2: moveb %a1@+,%d0
  2515. jmi 3f
  2516. moveb %d0,%a0@
  2517. moveb %a1@+,%a0@
  2518. jra 2b
  2519. 3: clrb %a0@
  2520. #elif defined(USE_MFP)
  2521. bclr #1,%a1@(LMFP_TSR)
  2522. moveb   #0x88,%a1@(LMFP_UCR)
  2523. andb #0x70,%a1@(LMFP_TDCDR)
  2524. moveb   #2,%a1@(LMFP_TDDR)
  2525. orb #1,%a1@(LMFP_TDCDR)
  2526. bset #1,%a1@(LMFP_TSR)
  2527. #endif
  2528. jra L(serial_init_done)
  2529. 4:
  2530. #endif
  2531. #ifdef CONFIG_MAC
  2532. is_not_mac(L(serial_init_not_mac))
  2533. #ifdef MAC_SERIAL_DEBUG
  2534. #if !defined(MAC_USE_SCC_A) && !defined(MAC_USE_SCC_B)
  2535. #define MAC_USE_SCC_B
  2536. #endif
  2537. #define mac_scc_cha_b_ctrl_offset 0x0
  2538. #define mac_scc_cha_a_ctrl_offset 0x2
  2539. #define mac_scc_cha_b_data_offset 0x4
  2540. #define mac_scc_cha_a_data_offset 0x6
  2541. #ifdef MAC_USE_SCC_A
  2542. /* Initialize channel A */
  2543. movel %pc@(L(mac_sccbase)),%a0
  2544. lea %pc@(L(scc_initable_mac)),%a1
  2545. 5: moveb %a1@+,%d0
  2546. jmi 6f
  2547. moveb %d0,%a0@(mac_scc_cha_a_ctrl_offset)
  2548. moveb %a1@+,%a0@(mac_scc_cha_a_ctrl_offset)
  2549. jra 5b
  2550. 6:
  2551. #endif /* MAC_USE_SCC_A */
  2552. #ifdef MAC_USE_SCC_B
  2553. /* Initialize channel B */
  2554. #ifndef MAC_USE_SCC_A /* Load mac_sccbase only if needed */
  2555. movel %pc@(L(mac_sccbase)),%a0
  2556. #endif /* MAC_USE_SCC_A */
  2557. lea %pc@(L(scc_initable_mac)),%a1
  2558. 7: moveb %a1@+,%d0
  2559. jmi 8f
  2560. moveb %d0,%a0@(mac_scc_cha_b_ctrl_offset)
  2561. moveb %a1@+,%a0@(mac_scc_cha_b_ctrl_offset)
  2562. jra 7b
  2563. 8:
  2564. #endif /* MAC_USE_SCC_B */
  2565. #endif /* MAC_SERIAL_DEBUG */
  2566. jra L(serial_init_done)
  2567. L(serial_init_not_mac):
  2568. #endif /* CONFIG_MAC */
  2569. #ifdef CONFIG_Q40
  2570. is_not_q40(2f)
  2571. /* debug output goes into SRAM, so we don't do it unless requested
  2572.    - check for '%LX$' signature in SRAM   */
  2573. lea %pc@(SYMBOL_NAME(q40_mem_cptr)),%a1
  2574. move.l #0xff020010,%a1@  /* must be inited - also used by debug=mem */
  2575. move.l #0xff020000,%a1   
  2576. cmp.b #'%',%a1@
  2577. bne 2f /*nodbg*/
  2578. addq.w #4,%a1
  2579. cmp.b #'L',%a1@
  2580. bne 2f /*nodbg*/
  2581. addq.w #4,%a1
  2582. cmp.b #'X',%a1@
  2583. bne 2f /*nodbg*/
  2584. addq.w #4,%a1
  2585. cmp.b #'$',%a1@
  2586. bne 2f /*nodbg*/
  2587. /* signature OK */
  2588. lea %pc@(L(q40_do_debug)),%a1
  2589. tas %a1@
  2590. /*nodbg: q40_do_debug is 0 by default*/
  2591. 2:
  2592. #endif
  2593. #ifdef CONFIG_APOLLO
  2594. /* We count on the PROM initializing SIO1 */
  2595. #endif
  2596. L(serial_init_done):
  2597. func_return serial_init
  2598. /*
  2599.  * Output character on serial port.
  2600.  */
  2601. func_start serial_putc,%d0/%d1/%a0/%a1
  2602. movel ARG1,%d0
  2603. cmpib #'n',%d0
  2604. jbne 1f
  2605. /* A little safe recursion is good for the soul */
  2606. serial_putc #'r'
  2607. 1:
  2608. #ifdef CONFIG_AMIGA
  2609. is_not_amiga(2f)
  2610. andw #0x00ff,%d0
  2611. oriw #0x0100,%d0
  2612. movel %pc@(L(custom)),%a0
  2613. movew %d0,%a0@(CUSTOMBASE+C_SERDAT)
  2614. 1: movew %a0@(CUSTOMBASE+C_SERDATR),%d0
  2615. andw #0x2000,%d0
  2616. jeq 1b
  2617. jra L(serial_putc_done)
  2618. 2:
  2619. #endif
  2620. #ifdef CONFIG_MAC
  2621. is_not_mac(5f)
  2622. #ifdef CONSOLE
  2623. console_putc %d0
  2624. #endif /* CONSOLE */
  2625. #ifdef MAC_SERIAL_DEBUG
  2626. #ifdef MAC_USE_SCC_A
  2627. movel %pc@(L(mac_sccbase)),%a1
  2628. 3: btst #2,%a1@(mac_scc_cha_a_ctrl_offset)
  2629. jeq 3b
  2630. moveb %d0,%a1@(mac_scc_cha_a_data_offset)
  2631. #endif /* MAC_USE_SCC_A */
  2632. #ifdef MAC_USE_SCC_B
  2633. #ifndef MAC_USE_SCC_A /* Load mac_sccbase only if needed */
  2634. movel %pc@(L(mac_sccbase)),%a1
  2635. #endif /* MAC_USE_SCC_A */
  2636. 4: btst #2,%a1@(mac_scc_cha_b_ctrl_offset)
  2637. jeq 4b
  2638. moveb %d0,%a1@(mac_scc_cha_b_data_offset)
  2639. #endif /* MAC_USE_SCC_B */
  2640. #endif /* MAC_SERIAL_DEBUG */
  2641. jra L(serial_putc_done)
  2642. 5:
  2643. #endif /* CONFIG_MAC */
  2644. #ifdef CONFIG_ATARI
  2645. is_not_atari(4f)
  2646. movel %pc@(L(iobase)),%a1
  2647. #if defined(USE_PRINTER)
  2648. 3: btst #0,%a1@(LSTMFP_GPIP)
  2649. jne 3b
  2650. moveb #LPSG_IO_B,%a1@(LPSG_SELECT)
  2651. moveb %d0,%a1@(LPSG_WRITE)
  2652. moveb #LPSG_IO_A,%a1@(LPSG_SELECT)
  2653. moveb %a1@(LPSG_READ),%d0
  2654. bclr #5,%d0
  2655. moveb %d0,%a1@(LPSG_WRITE)
  2656. nop
  2657. nop
  2658. bset #5,%d0
  2659. moveb %d0,%a1@(LPSG_WRITE)
  2660. #elif defined(USE_SCC)
  2661. 3: btst #2,%a1@(LSCC_CTRL)
  2662. jeq 3b
  2663. moveb %d0,%a1@(LSCC_DATA)
  2664. #elif defined(USE_MFP)
  2665. 3: btst #7,%a1@(LMFP_TSR)
  2666. jeq 3b
  2667. moveb %d0,%a1@(LMFP_UDR)
  2668. #endif
  2669. jra L(serial_putc_done)
  2670. 4:
  2671. #endif /* CONFIG_ATARI */
  2672. #ifdef CONFIG_MVME147
  2673. is_not_mvme147(2f)
  2674. 1: btst #2,M147_SCC_CTRL_A
  2675. jeq 1b
  2676. moveb %d0,M147_SCC_DATA_A
  2677. jbra L(serial_putc_done)
  2678. 2:
  2679. #endif
  2680. #ifdef CONFIG_MVME16x
  2681. is_not_mvme16x(2f)
  2682. /*
  2683.  * If the loader gave us a board type then we can use that to
  2684.  * select an appropriate output routine; otherwise we just use
  2685.  * the Bug code.  If we haev to use the Bug that means the Bug
  2686.  * workspace has to be valid, which means the Bug has to use
  2687.  * the SRAM, which is non-standard.
  2688.  */
  2689. moveml %d0-%d7/%a2-%a6,%sp@-
  2690. movel SYMBOL_NAME(vme_brdtype),%d1
  2691. jeq 1f | No tag - use the Bug
  2692. cmpi #VME_TYPE_MVME162,%d1
  2693. jeq 6f
  2694. cmpi #VME_TYPE_MVME172,%d1
  2695. jne 5f
  2696. /* 162/172; it's an SCC */
  2697. 6: btst #2,M162_SCC_CTRL_A
  2698. nop
  2699. nop
  2700. nop
  2701. jeq 6b
  2702. moveb #8,M162_SCC_CTRL_A
  2703. nop
  2704. nop
  2705. nop
  2706. moveb %d0,M162_SCC_CTRL_A
  2707. jra 3f
  2708. 5:
  2709. /* 166/167/177; its a CD2401 */
  2710. moveb #0,M167_CYCAR
  2711. moveb M167_CYIER,%d2
  2712. moveb #0x02,M167_CYIER
  2713. 7:
  2714. btst #5,M167_PCSCCTICR
  2715. jeq 7b
  2716. moveb M167_PCTPIACKR,%d1
  2717. moveb M167_CYLICR,%d1
  2718. jeq 8f
  2719. moveb #0x08,M167_CYTEOIR
  2720. jra 7b
  2721. 8:
  2722. moveb %d0,M167_CYTDR
  2723. moveb #0,M167_CYTEOIR
  2724. moveb %d2,M167_CYIER
  2725. jra 3f
  2726. 1:
  2727. moveb %d0,%sp@-
  2728. trap #15
  2729. .word 0x0020 /* TRAP 0x020 */
  2730. 3:
  2731. moveml %sp@+,%d0-%d7/%a2-%a6
  2732. jbra L(serial_putc_done)
  2733. 2:
  2734. #endif CONFIG_MVME16x
  2735. #ifdef CONFIG_BVME6000
  2736. is_not_bvme6000(2f)
  2737. /*
  2738.  * The BVME6000 machine has a serial port ...
  2739.  */
  2740. 1: btst #2,BVME_SCC_CTRL_A
  2741. jeq 1b
  2742. moveb %d0,BVME_SCC_DATA_A
  2743. jbra L(serial_putc_done)
  2744. 2:
  2745. #endif
  2746. #ifdef CONFIG_SUN3X
  2747. is_not_sun3x(2f) 
  2748. movel %d0,-(%sp)
  2749. movel 0xFEFE0018,%a1
  2750. jbsr (%a1)
  2751. addq #4,%sp
  2752. jbra L(serial_putc_done)
  2753. 2:
  2754. #endif
  2755. #ifdef CONFIG_Q40
  2756. is_not_q40(2f)
  2757. tst.l %pc@(L(q40_do_debug)) /* only debug if requested */
  2758. beq 2f
  2759. lea %pc@(SYMBOL_NAME(q40_mem_cptr)),%a1
  2760. move.l %a1@,%a0
  2761. move.b %d0,%a0@
  2762. addq.l #4,%a0
  2763. move.l %a0,%a1@
  2764. jbra    L(serial_putc_done)
  2765. 2:
  2766. #endif
  2767. #ifdef CONFIG_APOLLO
  2768. is_not_apollo(2f)
  2769. movl    %pc@(L(iobase)),%a1
  2770.         moveb   %d0,%a1@(LTHRB0)
  2771. 1:      moveb   %a1@(LSRB0),%d0
  2772.         andb    #0x4,%d0
  2773.         beq     1b
  2774. 2:
  2775. #endif
  2776. L(serial_putc_done):
  2777. func_return serial_putc
  2778. /*
  2779.  * Output a string.
  2780.  */
  2781. func_start puts,%d0/%a0
  2782. movel ARG1,%a0
  2783. jra 2f
  2784. 1:
  2785. #ifdef CONSOLE
  2786. console_putc %d0
  2787. #endif 
  2788. #ifdef SERIAL_DEBUG
  2789. serial_putc %d0
  2790. #endif
  2791. 2: moveb %a0@+,%d0
  2792. jne 1b
  2793. func_return puts
  2794. /*
  2795.  * Output number in hex notation.
  2796.  */
  2797. func_start putn,%d0-%d2
  2798. putc ' '
  2799. movel ARG1,%d0
  2800. moveq #7,%d1
  2801. 1: roll #4,%d0
  2802. move %d0,%d2
  2803. andb #0x0f,%d2
  2804. addb #'0',%d2
  2805. cmpb #'9',%d2
  2806. jls 2f
  2807. addb #'A'-('9'+1),%d2
  2808. 2:
  2809. #ifdef CONSOLE
  2810. console_putc %d2
  2811. #endif 
  2812. #ifdef SERIAL_DEBUG
  2813. serial_putc %d2
  2814. #endif
  2815. dbra %d1,1b
  2816. func_return putn
  2817. #ifdef CONFIG_MAC
  2818. /*
  2819.  * mac_serial_print
  2820.  *
  2821.  * This routine takes its parameters on the stack.  It then
  2822.  * turns around and calls the internal routine.  This routine
  2823.  * is used until the Linux console driver initializes itself.
  2824.  *
  2825.  * The calling parameters are:
  2826.  * void mac_serial_print(const char *str);
  2827.  *
  2828.  * This routine does NOT understand variable arguments only
  2829.  * simple strings!
  2830.  */
  2831. ENTRY(mac_serial_print)
  2832. moveml %d0/%a0,%sp@-
  2833. #if 1
  2834. move %sr,%sp@-
  2835. ori #0x0700,%sr
  2836. #endif
  2837. movel %sp@(10),%a0 /* fetch parameter */
  2838. jra 2f
  2839. 1: serial_putc %d0
  2840. 2: moveb %a0@+,%d0
  2841. jne 1b
  2842. #if 1
  2843. move %sp@+,%sr
  2844. #endif
  2845. moveml %sp@+,%d0/%a0
  2846. rts
  2847. #endif /* CONFIG_MAC */
  2848. #if defined(CONFIG_HP300) || defined(CONFIG_APOLLO)
  2849. func_start set_leds,%d0/%a0
  2850. movel ARG1,%d0
  2851. #ifdef CONFIG_HP300
  2852. is_not_hp300(1f)
  2853. movel %pc@(L(custom)),%a0
  2854. moveb %d0,%a0@(0x1ffff)
  2855. jra 2f
  2856. #endif
  2857. 1:
  2858. #ifdef CONFIG_APOLLO
  2859. movel   %pc@(L(iobase)),%a0
  2860. lsll    #8,%d0
  2861. eorw    #0xff00,%d0
  2862. moveb %d0,%a0@(LCPUCTRL)
  2863. #endif
  2864. 2:
  2865. func_return set_leds
  2866. #endif
  2867. #ifdef CONSOLE
  2868. /*
  2869.  * For continuity, see the data alignment
  2870.  * to which this structure is tied.
  2871.  */
  2872. #define Lconsole_struct_cur_column 0
  2873. #define Lconsole_struct_cur_row 4
  2874. #define Lconsole_struct_num_columns 8
  2875. #define Lconsole_struct_num_rows 12
  2876. #define Lconsole_struct_left_edge 16
  2877. #define Lconsole_struct_penguin_putc 20
  2878. L(console_init):
  2879. /*
  2880.  * Some of the register usage that follows
  2881.  * a0 = pointer to boot_info
  2882.  * a1 = pointer to screen
  2883.  * a2 = pointer to Lconsole_globals
  2884.  * d3 = pixel width of screen
  2885.  * d4 = pixel height of screen
  2886.  * (d3,d4) ~= (x,y) of a point just below
  2887.  * and to the right of the screen
  2888.  * NOT on the screen!
  2889.  * d5 = number of bytes per scan line
  2890.  * d6 = number of bytes on the entire screen
  2891.  */
  2892. moveml %a0-%a4/%d0-%d7,%sp@-
  2893. lea %pc@(L(console_globals)),%a2
  2894. lea %pc@(L(mac_videobase)),%a0
  2895. movel %a0@,%a1
  2896. lea %pc@(L(mac_rowbytes)),%a0
  2897. movel %a0@,%d5
  2898. lea %pc@(L(mac_dimensions)),%a0
  2899. movel %a0@,%d3 /* -> low byte */
  2900. movel %d3,%d4
  2901. swap %d4 /* -> high byte */
  2902. andl #0xffff,%d3 /* d3 = screen width in pixels */
  2903. andl #0xffff,%d4 /* d4 = screen height in pixels */
  2904. movel %d5,%d6
  2905. subl #20,%d6
  2906. mulul %d4,%d6 /* scan line bytes x num scan lines */
  2907. divul #8,%d6 /* we'll clear 8 bytes at a time */
  2908. subq #1,%d6
  2909. console_clear_loop:
  2910. movel #0xffffffff,%a1@+ /* Mac_black */
  2911. movel #0xffffffff,%a1@+ /* Mac_black */
  2912. dbra %d6,console_clear_loop
  2913. /* Calculate font size */
  2914. #if   defined(FONT_8x8) && defined(CONFIG_FONT_8x8)
  2915. lea %pc@(SYMBOL_NAME(font_vga_8x8)), %a0
  2916. #elif defined(FONT_8x16) && defined(CONFIG_FONT_8x16)
  2917. lea %pc@(SYMBOL_NAME(font_vga_8x16)),%a0
  2918. #elif defined(FONT_6x11) && defined(CONFIG_FONT_6x11)
  2919. lea %pc@(SYMBOL_NAME(font_vga_6x11)),%a0
  2920. #elif defined(CONFIG_FONT_8x8) /* default *
  2921. lea %pc@(SYMBOL_NAME(font_vga_8x8)), %a0
  2922. #else /* no compiled-in font */
  2923. lea 0,%a0
  2924. #endif
  2925. /*
  2926.  * At this point we make a shift in register usage
  2927.  * a1 = address of Lconsole_font pointer
  2928.  */
  2929. lea %pc@(L(console_font)),%a1
  2930. movel %a0,%a1@ /* store pointer to struct fbcon_font_desc in Lconsole_font */
  2931. tstl %a0
  2932. jeq 1f
  2933. /*
  2934.  * Calculate global maxs
  2935.  * Note - we can use either an
  2936.  * 8 x 16 or 8 x 8 character font
  2937.  * 6 x 11 also supported
  2938.  */
  2939. /* ASSERT: a0 = contents of Lconsole_font */
  2940. movel %d3,%d0 /* screen width in pixels */
  2941. divul %a0@(FBCON_FONT_DESC_WIDTH),%d0 /* d0 = max num chars per row */
  2942. movel %d4,%d1  /* screen height in pixels */
  2943. divul %a0@(FBCON_FONT_DESC_HEIGHT),%d1  /* d1 = max num rows */
  2944. movel %d0,%a2@(Lconsole_struct_num_columns)
  2945. movel %d1,%a2@(Lconsole_struct_num_rows)
  2946. /*
  2947.  * Clear the current row and column
  2948.  */
  2949. clrl %a2@(Lconsole_struct_cur_column)
  2950. clrl %a2@(Lconsole_struct_cur_row)
  2951. clrl %a2@(Lconsole_struct_left_edge)
  2952. /*
  2953.  * Initialization is complete
  2954.  */
  2955. 1: moveml %sp@+,%a0-%a4/%d0-%d7
  2956. rts
  2957. L(console_put_stats):
  2958. /*
  2959.  * Some of the register usage that follows
  2960.  * a0 = pointer to boot_info
  2961.  * d7 = value of boot_info fields
  2962.  */
  2963. moveml %a0/%d7,%sp@-
  2964. puts "nMacLinuxnn"
  2965. #ifdef SERIAL_DEBUG
  2966. puts " vidaddr:"
  2967. putn %pc@(L(mac_videobase)) /* video addr. */
  2968. puts "n  _stext:"
  2969. lea %pc@(SYMBOL_NAME(_stext)),%a0
  2970. putn %a0
  2971. puts "nbootinfo:"
  2972. lea %pc@(SYMBOL_NAME(_end)),%a0
  2973. putn %a0
  2974. puts "ncpuid:"
  2975. putn %pc@(L(cputype))
  2976. putc 'n'
  2977. #  if defined(MMU_PRINT)
  2978. jbsr mmu_print_machine_cpu_types
  2979. #  endif /* MMU_PRINT */
  2980. #endif /* SERIAL_DEBUG */
  2981. moveml %sp@+,%a0/%d7
  2982. rts
  2983. #ifdef CONSOLE_PENGUIN
  2984. L(console_put_penguin):
  2985. /*
  2986.  * Get 'that_penguin' onto the screen in the upper right corner
  2987.  * penguin is 64 x 74 pixels, align against right edge of screen
  2988.  */
  2989. moveml %a0-%a1/%d0-%d7,%sp@-
  2990. lea %pc@(L(mac_dimensions)),%a0
  2991. movel %a0@,%d0
  2992. andil #0xffff,%d0
  2993. subil #64,%d0 /* snug up against the right edge */
  2994. clrl %d1 /* start at the top */
  2995. movel #73,%d7
  2996. lea %pc@(SYMBOL_NAME(that_penguin)),%a1
  2997. console_penguin_row:
  2998. movel #31,%d6
  2999. console_penguin_pixel_pair:
  3000. moveb %a1@,%d2
  3001. lsrb #4,%d2
  3002. jbsr console_plot_pixel
  3003. addq #1,%d0
  3004. moveb %a1@+,%d2
  3005. jbsr console_plot_pixel
  3006. addq #1,%d0
  3007. dbra %d6,console_penguin_pixel_pair
  3008. subil #64,%d0
  3009. addq #1,%d1
  3010. dbra %d7,console_penguin_row
  3011. moveml %sp@+,%a0-%a1/%d0-%d7
  3012. rts
  3013. #endif
  3014. console_scroll:
  3015. moveml %a0-%a4/%d0-%d7,%sp@-
  3016. /*
  3017.  * Calculate source and destination addresses
  3018.  * output a1 = dest
  3019.  * a2 = source
  3020.  */
  3021. lea %pc@(L(mac_videobase)),%a0
  3022. movel %a0@,%a1
  3023. movel %a1,%a2
  3024. lea %pc@(L(mac_rowbytes)),%a0
  3025. movel %a0@,%d5
  3026. movel %pc@(L(console_font)),%a0
  3027. tstl %a0
  3028. jeq 1f
  3029. mulul %a0@(FBCON_FONT_DESC_HEIGHT),%d5 /* account for # scan lines per character */
  3030. addal %d5,%a2
  3031. /*
  3032.  * Get dimensions
  3033.  */
  3034. lea %pc@(L(mac_dimensions)),%a0
  3035. movel %a0@,%d3
  3036. movel %d3,%d4
  3037. swap %d4
  3038. andl #0xffff,%d3 /* d3 = screen width in pixels */
  3039. andl #0xffff,%d4 /* d4 = screen height in pixels */
  3040. /*
  3041.  * Calculate number of bytes to move
  3042.  */
  3043. lea %pc@(L(mac_rowbytes)),%a0
  3044. movel %a0@,%d6
  3045. movel %pc@(L(console_font)),%a0
  3046. subl %a0@(FBCON_FONT_DESC_HEIGHT),%d4 /* we're not scrolling the top row! */
  3047. mulul %d4,%d6 /* scan line bytes x num scan lines */
  3048. divul #32,%d6 /* we'll move 8 longs at a time */
  3049. subq #1,%d6
  3050. console_scroll_loop:
  3051. movel %a2@+,%a1@+
  3052. movel %a2@+,%a1@+
  3053. movel %a2@+,%a1@+
  3054. movel %a2@+,%a1@+
  3055. movel %a2@+,%a1@+
  3056. movel %a2@+,%a1@+
  3057. movel %a2@+,%a1@+
  3058. movel %a2@+,%a1@+
  3059. dbra %d6,console_scroll_loop
  3060. lea %pc@(L(mac_rowbytes)),%a0
  3061. movel %a0@,%d6
  3062. movel %pc@(L(console_font)),%a0
  3063. mulul %a0@(FBCON_FONT_DESC_HEIGHT),%d6 /* scan line bytes x font height */
  3064. divul #32,%d6 /* we'll move 8 words at a time */
  3065. subq #1,%d6
  3066. moveq #-1,%d0
  3067. console_scroll_clear_loop:
  3068. movel %d0,%a1@+
  3069. movel %d0,%a1@+
  3070. movel %d0,%a1@+
  3071. movel %d0,%a1@+
  3072. movel %d0,%a1@+
  3073. movel %d0,%a1@+
  3074. movel %d0,%a1@+
  3075. movel %d0,%a1@+
  3076. dbra %d6,console_scroll_clear_loop
  3077. 1: moveml %sp@+,%a0-%a4/%d0-%d7
  3078. rts
  3079. func_start console_putc,%a0/%a1/%d0-%d7
  3080. is_not_mac(console_exit)
  3081. tstl %pc@(L(console_font))
  3082. jeq console_exit
  3083. /* Output character in d7 on console.
  3084.  */
  3085. movel ARG1,%d7
  3086. cmpib #'n',%d7
  3087. jbne 1f
  3088. /* A little safe recursion is good for the soul */
  3089. console_putc #'r'
  3090. 1:
  3091. lea %pc@(L(console_globals)),%a0
  3092. cmpib #10,%d7
  3093. jne console_not_lf
  3094. movel %a0@(Lconsole_struct_cur_row),%d0
  3095. addil #1,%d0
  3096. movel %d0,%a0@(Lconsole_struct_cur_row)
  3097. movel %a0@(Lconsole_struct_num_rows),%d1
  3098. cmpl %d1,%d0
  3099. jcs 1f
  3100. subil #1,%d0
  3101. movel %d0,%a0@(Lconsole_struct_cur_row)
  3102. jbsr console_scroll
  3103. 1:
  3104. jra console_exit
  3105. console_not_lf:
  3106. cmpib #13,%d7
  3107. jne console_not_cr
  3108. clrl %a0@(Lconsole_struct_cur_column)
  3109. jra console_exit
  3110. console_not_cr:
  3111. cmpib #1,%d7
  3112. jne console_not_home
  3113. clrl %a0@(Lconsole_struct_cur_row)
  3114. clrl %a0@(Lconsole_struct_cur_column)
  3115. jra console_exit
  3116. /*
  3117.  * At this point we know that the %d7 character is going to be
  3118.  * rendered on the screen.  Register usage is -
  3119.  * a0 = pointer to console globals
  3120.  * a1 = font data
  3121.  * d0 = cursor column
  3122.  * d1 = cursor row to draw the character
  3123.  * d7 = character number
  3124.  */
  3125. console_not_home:
  3126. movel %a0@(Lconsole_struct_cur_column),%d0
  3127. addil #1,%a0@(Lconsole_struct_cur_column)
  3128. movel %a0@(Lconsole_struct_num_columns),%d1
  3129. cmpl %d1,%d0
  3130. jcs 1f
  3131. putc 'n' /* recursion is OK! */
  3132. 1:
  3133. movel %a0@(Lconsole_struct_cur_row),%d1
  3134. /*
  3135.  * At this point we make a shift in register usage
  3136.  * a0 = address of pointer to font data (fbcon_font_desc)
  3137.  */
  3138. movel %pc@(L(console_font)),%a0
  3139. movel %a0@(FBCON_FONT_DESC_DATA),%a1 /* Load fbcon_font_desc.data into a1 */
  3140. andl #0x000000ff,%d7
  3141. /* ASSERT: a0 = contents of Lconsole_font */
  3142. mulul %a0@(FBCON_FONT_DESC_HEIGHT),%d7 /* d7 = index into font data */
  3143. addl %d7,%a1 /* a1 = points to char image */
  3144. /*
  3145.  * At this point we make a shift in register usage
  3146.  * d0 = pixel coordinate, x
  3147.  * d1 = pixel coordinate, y
  3148.  * d2 = (bit 0) 1/0 for white/black (!) pixel on screen
  3149.  * d3 = font scan line data (8 pixels)
  3150.  * d6 = count down for the font's pixel width (8)
  3151.  * d7 = count down for the font's pixel count in height
  3152.  */
  3153. /* ASSERT: a0 = contents of Lconsole_font */
  3154. mulul %a0@(FBCON_FONT_DESC_WIDTH),%d0
  3155. mulul %a0@(FBCON_FONT_DESC_HEIGHT),%d1
  3156. movel %a0@(FBCON_FONT_DESC_HEIGHT),%d7 /* Load fbcon_font_desc.height into d7 */
  3157. subq #1,%d7
  3158. console_read_char_scanline:
  3159. moveb %a1@+,%d3
  3160. /* ASSERT: a0 = contents of Lconsole_font */
  3161. movel %a0@(FBCON_FONT_DESC_WIDTH),%d6 /* Load fbcon_font_desc.width into d6 */
  3162. subql #1,%d6
  3163. console_do_font_scanline:
  3164. lslb #1,%d3
  3165. scsb %d2 /* convert 1 bit into a byte */
  3166. jbsr console_plot_pixel
  3167. addq #1,%d0
  3168. dbra %d6,console_do_font_scanline
  3169. /* ASSERT: a0 = contents of Lconsole_font */
  3170. subl %a0@(FBCON_FONT_DESC_WIDTH),%d0
  3171. addq #1,%d1
  3172. dbra %d7,console_read_char_scanline
  3173. console_exit:
  3174. func_return console_putc
  3175. console_plot_pixel:
  3176. /*
  3177.  * Input:
  3178.  * d0 = x coordinate
  3179.  * d1 = y coordinate
  3180.  * d2 = (bit 0) 1/0 for white/black (!)
  3181.  * All registers are preserved
  3182.  */
  3183. moveml %a0-%a1/%d0-%d4,%sp@-
  3184. lea %pc@(L(mac_videobase)),%a0
  3185. movel %a0@,%a1
  3186. lea %pc@(L(mac_videodepth)),%a0
  3187. movel %a0@,%d3
  3188. lea %pc@(L(mac_rowbytes)),%a0
  3189. mulul %a0@,%d1
  3190. /*
  3191.  * Register usage:
  3192.  * d0 = x coord becomes byte offset into frame buffer
  3193.  * d1 = y coord
  3194.  * d2 = black or white (0/1)
  3195.  * d3 = video depth
  3196.  * d4 = temp of x (d0) for many bit depths
  3197.  * d5 = unused
  3198.  * d6 = unused
  3199.  * d7 = unused
  3200.  */
  3201. test_1bit:
  3202. cmpb #1,%d3
  3203. jbne test_2bit
  3204. movel %d0,%d4 /* we need the low order 3 bits! */
  3205. divul #8,%d0
  3206. addal %d0,%a1
  3207. addal %d1,%a1
  3208. andb #7,%d4
  3209. eorb #7,%d4 /* reverse the x-coordinate w/ screen-bit # */
  3210. andb #1,%d2
  3211. jbne white_1
  3212. bsetb %d4,%a1@
  3213. jbra console_plot_pixel_exit
  3214. white_1:
  3215. bclrb %d4,%a1@
  3216. jbra console_plot_pixel_exit
  3217. test_2bit:
  3218. cmpb #2,%d3
  3219. jbne test_4bit
  3220. movel %d0,%d4 /* we need the low order 2 bits! */
  3221. divul #4,%d0
  3222. addal %d0,%a1
  3223. addal %d1,%a1
  3224. andb #3,%d4
  3225. eorb #3,%d4 /* reverse the x-coordinate w/ screen-bit # */
  3226. lsll #1,%d4 /* ! */
  3227. andb #1,%d2
  3228. jbne white_2
  3229. bsetb %d4,%a1@
  3230. addq #1,%d4
  3231. bsetb %d4,%a1@
  3232. jbra console_plot_pixel_exit
  3233. white_2:
  3234. bclrb %d4,%a1@
  3235. addq #1,%d4
  3236. bclrb %d4,%a1@
  3237. jbra console_plot_pixel_exit
  3238. test_4bit:
  3239. cmpb #4,%d3
  3240. jbne test_8bit
  3241. movel %d0,%d4 /* we need the low order bit! */
  3242. divul #2,%d0
  3243. addal %d0,%a1
  3244. addal %d1,%a1
  3245. andb #1,%d4
  3246. eorb #1,%d4
  3247. lsll #2,%d4 /* ! */
  3248. andb #1,%d2
  3249. jbne white_4
  3250. bsetb %d4,%a1@
  3251. addq #1,%d4
  3252. bsetb %d4,%a1@
  3253. addq #1,%d4
  3254. bsetb %d4,%a1@
  3255. addq #1,%d4
  3256. bsetb %d4,%a1@
  3257. jbra console_plot_pixel_exit
  3258. white_4:
  3259. bclrb %d4,%a1@
  3260. addq #1,%d4
  3261. bclrb %d4,%a1@
  3262. addq #1,%d4
  3263. bclrb %d4,%a1@
  3264. addq #1,%d4
  3265. bclrb %d4,%a1@
  3266. jbra console_plot_pixel_exit
  3267. test_8bit:
  3268. cmpb #8,%d3
  3269. jbne test_16bit
  3270. addal %d0,%a1
  3271. addal %d1,%a1
  3272. andb #1,%d2
  3273. jbne white_8
  3274. moveb #0xff,%a1@
  3275. jbra console_plot_pixel_exit
  3276. white_8:
  3277. clrb %a1@
  3278. jbra console_plot_pixel_exit
  3279. test_16bit:
  3280. cmpb #16,%d3
  3281. jbne console_plot_pixel_exit
  3282. addal %d0,%a1
  3283. addal %d0,%a1
  3284. addal %d1,%a1
  3285. andb #1,%d2
  3286. jbne white_16
  3287. clrw %a1@
  3288. jbra console_plot_pixel_exit
  3289. white_16:
  3290. movew #0x0fff,%a1@
  3291. jbra console_plot_pixel_exit
  3292. console_plot_pixel_exit:
  3293. moveml %sp@+,%a0-%a1/%d0-%d4
  3294. rts
  3295. #endif /* CONSOLE */
  3296. #if 0
  3297. /*
  3298.  * This is some old code lying around.  I don't believe
  3299.  * it's used or important anymore.  My guess is it contributed
  3300.  * to getting to this point, but it's done for now.
  3301.  * It was still in the 2.1.77 head.S, so it's still here.
  3302.  * (And still not used!)
  3303.  */
  3304. L(showtest):
  3305. moveml %a0/%d7,%sp@-
  3306. puts "A="
  3307. putn %a1
  3308. .long 0xf0119f15 | ptestr #5,%a1@,#7,%a0
  3309. puts "DA="
  3310. putn %a0
  3311. puts "D="
  3312. putn %a0@
  3313. puts "S="
  3314. lea %pc@(L(mmu)),%a0
  3315. .long 0xf0106200 | pmove %psr,%a0@
  3316. clrl %d7
  3317. movew %a0@,%d7
  3318. putn %d7
  3319. putc 'n'
  3320. moveml %sp@+,%a0/%d7
  3321. rts
  3322. #endif /* 0 */
  3323. __INITDATA
  3324. .align 4
  3325. #ifdef CONFIG_HP300
  3326. SYMBOL_NAME_LABEL(hp300_phys_ram_base)
  3327. #endif
  3328. #if defined(CONFIG_ATARI) || defined(CONFIG_AMIGA) || 
  3329.     defined(CONFIG_HP300) || defined(CONFIG_APOLLO)
  3330. L(custom):
  3331. L(iobase):
  3332. .long 0
  3333. #endif
  3334. #ifdef CONFIG_MAC
  3335. L(console_video_virtual):
  3336. .long 0
  3337. #endif /* CONFIG_MAC */
  3338. #if defined(CONSOLE)
  3339. L(console_globals):
  3340. .long 0 /* cursor column */
  3341. .long 0 /* cursor row */
  3342. .long 0 /* max num columns */
  3343. .long 0 /* max num rows */
  3344. .long 0 /* left edge */
  3345. .long 0 /* mac putc */
  3346. L(console_font):
  3347. .long 0 /* pointer to console font (struct fbcon_font_desc) */
  3348. #endif /* CONSOLE */
  3349. #if defined(MMU_PRINT)
  3350. L(mmu_print_data):
  3351. .long 0 /* valid flag */
  3352. .long 0 /* start logical */
  3353. .long 0 /* next logical */
  3354. .long 0 /* start physical */
  3355. .long 0 /* next physical */
  3356. #endif /* MMU_PRINT */
  3357. L(cputype):
  3358. .long 0
  3359. L(mmu_cached_pointer_tables):
  3360. .long 0
  3361. L(mmu_num_pointer_tables):
  3362. .long 0
  3363. L(phys_kernel_start):
  3364. .long 0
  3365. L(kernel_end):
  3366. .long 0
  3367. L(memory_start):
  3368. .long 0
  3369. L(kernel_pgdir_ptr):
  3370. .long 0
  3371. L(temp_mmap_mem):
  3372. .long 0
  3373. #if defined (CONFIG_MVME147)
  3374. M147_SCC_CTRL_A = 0xfffe3002
  3375. M147_SCC_DATA_A = 0xfffe3003
  3376. #endif
  3377. #if defined (CONFIG_MVME16x)
  3378. M162_SCC_CTRL_A = 0xfff45005
  3379. M167_CYCAR = 0xfff450ee
  3380. M167_CYIER = 0xfff45011
  3381. M167_CYLICR = 0xfff45026
  3382. M167_CYTEOIR = 0xfff45085
  3383. M167_CYTDR = 0xfff450f8
  3384. M167_PCSCCTICR = 0xfff4201e
  3385. M167_PCTPIACKR = 0xfff42025
  3386. #endif
  3387. #if defined (CONFIG_BVME6000)
  3388. BVME_SCC_CTRL_A = 0xffb0000b
  3389. BVME_SCC_DATA_A = 0xffb0000f
  3390. #endif
  3391. #if defined(CONFIG_MAC)
  3392. L(mac_booter_data):
  3393. .long 0
  3394. L(mac_videobase):
  3395. .long 0
  3396. L(mac_videodepth):
  3397. .long 0
  3398. L(mac_dimensions):
  3399. .long 0
  3400. L(mac_rowbytes):
  3401. .long 0
  3402. #ifdef MAC_SERIAL_DEBUG
  3403. L(mac_sccbase):
  3404. .long 0
  3405. #endif /* MAC_SERIAL_DEBUG */
  3406. #endif
  3407. #if defined (CONFIG_APOLLO)
  3408. LSRB0        = 0x10412
  3409. LTHRB0       = 0x10416
  3410. LCPUCTRL     = 0x10100
  3411. #endif
  3412. __FINIT
  3413. .data
  3414. .align 4
  3415. SYMBOL_NAME_LABEL(availmem)
  3416. .long 0
  3417. SYMBOL_NAME_LABEL(m68k_pgtable_cachemode)
  3418. .long 0
  3419. SYMBOL_NAME_LABEL(m68k_supervisor_cachemode)
  3420. .long 0
  3421. #if defined(CONFIG_MVME16x)
  3422. SYMBOL_NAME_LABEL(mvme_bdid)
  3423. .long 0,0,0,0,0,0,0,0
  3424. #endif
  3425. #if defined(CONFIG_Q40)
  3426. SYMBOL_NAME_LABEL(q40_mem_cptr)
  3427. .long 0
  3428. L(q40_do_debug):
  3429. .long 0
  3430. #endif