head.S
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:87k
源码类别:

嵌入式Linux

开发平台:

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