sun3.h 483 B

12345678910111213141516171819202122
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #include <linux/linkage.h>
  3. struct rtc_time;
  4. /* config.c */
  5. asmlinkage void sun3_init(void);
  6. /* idprom.c */
  7. void sun3_get_model(char *model);
  8. /* intersil.c */
  9. int sun3_hwclk(int set, struct rtc_time *t);
  10. /* leds.c */
  11. void sun3_leds(unsigned char byte);
  12. /* mmu_emu.c */
  13. void mmu_emu_init(unsigned long bootmem_end);
  14. int mmu_emu_handle_fault(unsigned long vaddr, int read_flag, int kernel_fault);
  15. void print_pte_vaddr(unsigned long vaddr);