via-cuda.c (762f99f4f3cb41a775b5157dd761217beba65873) via-cuda.c (e6d03ac156db84422519aa8628efc210d24bf889)
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * Device driver for the Cuda and Egret system controllers found on PowerMacs
4 * and 68k Macs.
5 *
6 * The Cuda or Egret is a 6805 microcontroller interfaced to the 6522 VIA.
7 * This MCU controls system power, Parameter RAM, Real Time Clock and the
8 * Apple Desktop Bus (ADB) that connects to the keyboard and mouse.

--- 7 unchanged lines hidden (view full) ---

16#include <linux/delay.h>
17#include <linux/adb.h>
18#include <linux/cuda.h>
19#include <linux/spinlock.h>
20#include <linux/interrupt.h>
21#ifdef CONFIG_PPC
22#include <asm/prom.h>
23#include <asm/machdep.h>
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * Device driver for the Cuda and Egret system controllers found on PowerMacs
4 * and 68k Macs.
5 *
6 * The Cuda or Egret is a 6805 microcontroller interfaced to the 6522 VIA.
7 * This MCU controls system power, Parameter RAM, Real Time Clock and the
8 * Apple Desktop Bus (ADB) that connects to the keyboard and mouse.

--- 7 unchanged lines hidden (view full) ---

16#include <linux/delay.h>
17#include <linux/adb.h>
18#include <linux/cuda.h>
19#include <linux/spinlock.h>
20#include <linux/interrupt.h>
21#ifdef CONFIG_PPC
22#include <asm/prom.h>
23#include <asm/machdep.h>
24#include <asm/pmac_feature.h>
24#else
25#include <asm/macintosh.h>
26#include <asm/macints.h>
27#include <asm/mac_via.h>
28#endif
29#include <asm/io.h>
30#include <linux/init.h>
31

--- 774 unchanged lines hidden ---
25#else
26#include <asm/macintosh.h>
27#include <asm/macints.h>
28#include <asm/mac_via.h>
29#endif
30#include <asm/io.h>
31#include <linux/init.h>
32

--- 774 unchanged lines hidden ---