Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
Uh oh!
There was an error while loading.
Please reload this page
.
GrassLab
/
osc2021
Public
Notifications
You must be signed in to change notification settings
Fork
99
Star
16
Code
Issues
0
Pull requests
7
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Files
Expand file tree
9f21d9147fa65da23a11d538d4cc4f2e1b42f411
Breadcrumbs
osc2021
/
include
/
exception.h
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
36 lines (30 loc) · 1.45 KB
9f21d91
Breadcrumbs
osc2021
/
include
/
exception.h
Copy path
Top
File metadata and controls
Code
Blame
36 lines (30 loc) · 1.45 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#ifndef _EXCE_H
#define _EXCE_H
#include <base.h>
#define CORE0_IRQ_SRC ((volatile unsigned int*)(MMIO_BASE+0x40000060))
// To identify IRQ interrupt source is from AUX
// // GPU pending 1 register, see p.115 in BCM2835 ARM Peripherals docs
#define IRQ_PENDING_1 ((volatile unsigned int*)(MMIO_BASE+0x0000B204))
// For miniUART interrupt.
// To Enable second level interrupt controller’s IRQs1(0x3f00b210)’s bit29.
// See p.116 in BCM2835 ARM Peripherals docs
#define ENABLE_IRQS_1 ((volatile unsigned int*)(MMIO_BASE+0x0000B210))
// To Disable second level interrupt controller’s IRQs1(0x3f00b210)’s bit29.
#define DISABLE_IRQS_1 ((volatile unsigned int*)(MMIO_BASE+0x0000B21C))
// enable/disable/check pending miniUART interrupt bit 29
// See p.113 ARM peripherals interrupts table in BCM2835 docs
#define AUX_IRQ (1 << 29)
void show_invalid_entry_message(int type, unsigned long esr, unsigned long address);
void sync_exc_router(unsigned long spsr, unsigned long elr, unsigned long esr);
void sync_svc_handler(unsigned long spsr, unsigned long elr, unsigned long esr);
void irq_exc_router();
void print_pstate_interrupt_mask_bits();
// defined in entry.S.
// It's weird that we can't define them in entry.h. It seems that because we include entry.h in entry.S
// void enable_irq_persist();
// void disable_irq_persist();
// void enable_irq();
// void disable_irq();
// void enable_interrupt();
// void disable_interrupt();
#endif /*_EXC_H */
You can’t perform that action at this time.