Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/arch/sh/include/mach-sh03/mach/io.h
26498 views
1
/* SPDX-License-Identifier: GPL-2.0 */
2
/*
3
* include/asm-sh/sh03/io.h
4
*
5
* Copyright 2004 Interface Co.,Ltd. Saito.K
6
*
7
* IO functions for an Interface CTP/PCI-SH03
8
*/
9
10
#ifndef _ASM_SH_IO_SH03_H
11
#define _ASM_SH_IO_SH03_H
12
13
#include <linux/time.h>
14
15
#define IRL0_IRQ 2
16
#define IRL0_PRIORITY 13
17
#define IRL1_IRQ 5
18
#define IRL1_PRIORITY 10
19
#define IRL2_IRQ 8
20
#define IRL2_PRIORITY 7
21
#define IRL3_IRQ 11
22
#define IRL3_PRIORITY 4
23
24
void heartbeat_sh03(void);
25
26
#endif /* _ASM_SH_IO_SH03_H */
27
28