1 |
22 |
dgisselq |
////////////////////////////////////////////////////////////////////////////////
|
2 |
|
|
//
|
3 |
|
|
// Filename: swint.h
|
4 |
|
|
//
|
5 |
|
|
// Project: CMod S6 System on a Chip, ZipCPU demonstration project
|
6 |
|
|
//
|
7 |
|
|
// Purpose: Defines the "Software interrupts" that may be created on this
|
8 |
|
|
// system. A software interrupt is one that is created by
|
9 |
|
|
// software, but may be waited on like any other interrupt.
|
10 |
|
|
//
|
11 |
|
|
// The biggest reason for having this is realtime clock (RTC) emulation.
|
12 |
|
|
// Somewhere, a hardware interrupt needs to prod the software RTC. Then
|
13 |
|
|
// the software RTC will generate a software interrupt so that anything
|
14 |
|
|
// waiting on the top of the second may now be informed of that fact.
|
15 |
|
|
//
|
16 |
|
|
// Creator: Dan Gisselquist, Ph.D.
|
17 |
|
|
// Gisselquist Technology, LLC
|
18 |
|
|
//
|
19 |
|
|
////////////////////////////////////////////////////////////////////////////////
|
20 |
|
|
//
|
21 |
|
|
// Copyright (C) 2015-2016, Gisselquist Technology, LLC
|
22 |
|
|
//
|
23 |
|
|
// This program is free software (firmware): you can redistribute it and/or
|
24 |
|
|
// modify it under the terms of the GNU General Public License as published
|
25 |
|
|
// by the Free Software Foundation, either version 3 of the License, or (at
|
26 |
|
|
// your option) any later version.
|
27 |
|
|
//
|
28 |
|
|
// This program is distributed in the hope that it will be useful, but WITHOUT
|
29 |
|
|
// ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY or
|
30 |
|
|
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
31 |
|
|
// for more details.
|
32 |
|
|
//
|
33 |
|
|
// You should have received a copy of the GNU General Public License along
|
34 |
|
|
// with this program. (It's in the $(ROOT)/doc directory, run make with no
|
35 |
|
|
// target there if the PDF file isn't present.) If not, see
|
36 |
|
|
// <http://www.gnu.org/licenses/> for a copy.
|
37 |
|
|
//
|
38 |
|
|
// License: GPL, v3, as defined and found on www.gnu.org,
|
39 |
|
|
// http://www.gnu.org/licenses/gpl.html
|
40 |
|
|
//
|
41 |
|
|
//
|
42 |
|
|
////////////////////////////////////////////////////////////////////////////////
|
43 |
|
|
//
|
44 |
|
|
//
|
45 |
|
|
#ifndef SWINT_H
|
46 |
|
|
#define SWINT_H
|
47 |
|
|
|
48 |
|
|
#define SWINT_PPS 0x008000
|
49 |
|
|
#define SWINT_TIMEOUT 0x010000
|
50 |
|
|
#define SWINT_PPD 0x020000
|
51 |
|
|
#define SWINT_ALARM 0x040000
|
52 |
|
|
#define SWINT_CLOCK 0x080000
|
53 |
29 |
dgisselq |
#define SWINT_DOORBELL 0x100000
|
54 |
22 |
dgisselq |
|
55 |
|
|
#endif
|