clock.c (d1f4c44aa8aff72671f7787ea956f3b0a8dca784) | clock.c (de4da6cd04bf299e46f0c65d4bfd9fa94bf00f08) |
---|---|
1/*- 2 * SPDX-License-Identifier: BSD-3-Clause 3 * 4 * Copyright (c) 1990 The Regents of the University of California. 5 * Copyright (c) 2010 Alexander Motin <mav@FreeBSD.org> 6 * All rights reserved. 7 * 8 * This code is derived from software contributed to Berkeley by --- 55 unchanged lines hidden (view full) --- 64#include <sys/smp.h> 65#include <sys/sysctl.h> 66#include <sys/timeet.h> 67#include <sys/timetc.h> 68 69#include <machine/clock.h> 70#include <machine/cpu.h> 71#include <machine/intr_machdep.h> | 1/*- 2 * SPDX-License-Identifier: BSD-3-Clause 3 * 4 * Copyright (c) 1990 The Regents of the University of California. 5 * Copyright (c) 2010 Alexander Motin <mav@FreeBSD.org> 6 * All rights reserved. 7 * 8 * This code is derived from software contributed to Berkeley by --- 55 unchanged lines hidden (view full) --- 64#include <sys/smp.h> 65#include <sys/sysctl.h> 66#include <sys/timeet.h> 67#include <sys/timetc.h> 68 69#include <machine/clock.h> 70#include <machine/cpu.h> 71#include <machine/intr_machdep.h> |
72#include <machine/timerreg.h> | |
73#include <x86/apicvar.h> 74#include <x86/init.h> 75#include <x86/ppireg.h> | 72#include <x86/apicvar.h> 73#include <x86/init.h> 74#include <x86/ppireg.h> |
75#include <x86/timerreg.h> |
|
76 77#include <isa/rtc.h> 78#ifdef DEV_ISA 79#include <isa/isareg.h> 80#include <isa/isavar.h> 81#endif 82 83int clkintr_pending; --- 584 unchanged lines hidden --- | 76 77#include <isa/rtc.h> 78#ifdef DEV_ISA 79#include <isa/isareg.h> 80#include <isa/isavar.h> 81#endif 82 83int clkintr_pending; --- 584 unchanged lines hidden --- |