Difference between revisions of "84PCE:Ports:5000"

From WikiTI
Jump to: navigation, search
(Created page with "5000 Range Unknowns 5000 Range Unknowns 5000 Range Unknowns {|- |<u>Port...")
 
(Known Sources)
 
(16 intermediate revisions by 4 users not shown)
Line 1: Line 1:
[[Category:84PCE:Ports:By_Address|5000 Range Unknowns]] [[Category:84PCE:Ports:By_Name|5000 Range Unknowns]] [[Category:84PCE:Ports:Unknown|5000 Range Unknowns]]
+
[[Category:84PCE:Ports:By_Address|5000 - Interrupt Controller]] [[Category:84PCE:Ports:By_Name|Interrupt Controller]]
 +
== Synopsis ==
 +
'''Port Number:''' 5000-505F
  
 +
'''Memory-mapped address:''' F00000
 +
 +
'''Function:''' Interrupt Controller
 +
 +
This port range is used to configure and control interrupts (appears to be model FTINTC010). There are two sets of interrupt control registers, but only the first actually triggers interrupts on the eZ80.
 +
 +
It is arranged in 22-bit bitfields (each occupying a little-endian 32-bit word), with each bit corresponding to a different interrupt source.
 +
 +
=== Known Sources ===
 +
{|-
 +
|<u>Bit</u>&nbsp;&nbsp;&nbsp;
 +
|<u>Interrupt Source</u>&nbsp;&nbsp;&nbsp;
 +
|-
 +
|0
 +
|ON Button
 +
|-
 +
|1
 +
|[[:84PCE:Ports:7000|Timer 1]]
 +
|-
 +
|2
 +
|[[:84PCE:Ports:7000|Timer 2]]
 +
|-
 +
|3
 +
|[[:84PCE:Ports:7000|Timer 3]]
 +
|-
 +
|4
 +
|Probably OS timer. Frequency is controlled by bits [1:0] of [[:84PCE:Ports:0000|port 0000]].
 +
|-
 +
|10
 +
|[[:84PCE:Ports:A000|Keyboard]]
 +
|-
 +
|11
 +
|[[:84PCE:Ports:4000|LCD Controller]]
 +
|-
 +
|12
 +
|[[:84PCE:Ports:8000|Real-Time Clock]]
 +
|-
 +
|13
 +
|[[:84PCE:Ports:3000|USB]]
 +
|-
 +
|15
 +
|Unknown, but signal seems to be constantly on
 +
|-
 +
|16
 +
|Added in Python Edition.
 +
|-
 +
|18
 +
|[[:84PCE:Ports:D000|SPI]]
 +
|-
 +
|19
 +
|Added in Python Edition.
 +
|-
 +
|}
 +
 +
=== Registers ===
 
{|-
 
{|-
 
|<u>Port</u>&nbsp;&nbsp;&nbsp;
 
|<u>Port</u>&nbsp;&nbsp;&nbsp;
Line 7: Line 64:
 
|<u>Information</u>&nbsp;&nbsp;&nbsp;
 
|<u>Information</u>&nbsp;&nbsp;&nbsp;
 
|-
 
|-
|[[:84PCE:Ports:5000|5000]]
+
|5000
|00
+
|Read-Only
|??
+
|003FFFFF
|May or may not serve a purpose?
+
|Raw interrupt status (can be either raw signal or latched on signal change from low-to-high).
 
|-
 
|-
|[[:84PCE:Ports:5001|5001]]
+
|5004
|80
+
|00003011
|??
+
|003FFFFF
|Bit 2 is set while any key is being pressed
+
|Interrupt enable mask.
 
|-
 
|-
|[[:84PCE:Ports:5002|5002]]
+
|5008
|00
+
|Write-Only
|??
+
|003FFFFF
|Ports 5002-5003 may or may not serve a purpose?
+
|Interrupt acknowledge (used by ISR), seems to only affect latched status bits.
 
|-
 
|-
|5003
+
|500C
|00
+
|00000019
 +
|003FFFFF
 +
|Determines whether bits of [[:84PCE:Ports:5000|5000]] will latch. 0 means raw signal, 1 means latched.
 +
|-
 +
|5010
 +
|00000000
 +
|003FFFFF
 +
|Inverts the raw signal of the interrupts corresponding to each 1 bit. Can be used to latch on a high-to-low change.
 +
|-
 +
|5014
 +
|Read-only
 +
|003FFFFF
 +
|Masked interrupt status (used by ISR). Should be equal to ([[:84PCE:Ports:5000|5000]] & [[:84PCE:Ports:5004|5004]]).
 +
|-
 +
|5020
 
|
 
|
|Port 5003 may always read zero
+
|
 +
|Ports 5020-503F are identical in function to 5000-501F. These registers do not actually trigger interrupts. Since this IP core was meant for use with ARM, these ports were intended to drive the FIQ signal, but the eZ80 has no such alternative interrupts. However, these ports can be used for other purposes such as reading the state of the ON key.
 
|-
 
|-
|[[:84PCE:Ports:5004|5004]]
+
|5050
|11
+
|Read-only
|FF
+
|FFFFFFFF
|Reset bit 4 to freeze
+
|Revision register. Reads 0x00010900 for revision 1.9.0.
 
|-
 
|-
|[[:84PCE:Ports:5005|5005]]
+
|5054
|30
+
|Read-only
 
|FF
 
|FF
|Setting bit 2 or bit 7 (or both) will freeze the calculator
+
|Feature register for input number (IRQ). Reads the number of normal interrupts configured to be handled by the controller, which is 22.
 
|-
 
|-
|[[:84PCE:Ports:5006|5006]]
+
|5055
|00
+
|Read-only
|3F
+
|FF
|Latches value written
+
|Feature register for input number (FIQ). Reads the number of FIQ interrupts configured to be handled by the controller, which is 22.
|-
+
|5007
+
|00
+
|
+
|Ports 5007-500B may always read zero
+
 
|-
 
|-
 
|}
 
|}

Latest revision as of 14:47, 16 January 2023

Synopsis

Port Number: 5000-505F

Memory-mapped address: F00000

Function: Interrupt Controller

This port range is used to configure and control interrupts (appears to be model FTINTC010). There are two sets of interrupt control registers, but only the first actually triggers interrupts on the eZ80.

It is arranged in 22-bit bitfields (each occupying a little-endian 32-bit word), with each bit corresponding to a different interrupt source.

Known Sources

Bit    Interrupt Source   
0 ON Button
1 Timer 1
2 Timer 2
3 Timer 3
4 Probably OS timer. Frequency is controlled by bits [1:0] of port 0000.
10 Keyboard
11 LCD Controller
12 Real-Time Clock
13 USB
15 Unknown, but signal seems to be constantly on
16 Added in Python Edition.
18 SPI
19 Added in Python Edition.

Registers

Port    Default    Bits    Information   
5000 Read-Only 003FFFFF Raw interrupt status (can be either raw signal or latched on signal change from low-to-high).
5004 00003011 003FFFFF Interrupt enable mask.
5008 Write-Only 003FFFFF Interrupt acknowledge (used by ISR), seems to only affect latched status bits.
500C 00000019 003FFFFF Determines whether bits of 5000 will latch. 0 means raw signal, 1 means latched.
5010 00000000 003FFFFF Inverts the raw signal of the interrupts corresponding to each 1 bit. Can be used to latch on a high-to-low change.
5014 Read-only 003FFFFF Masked interrupt status (used by ISR). Should be equal to (5000 & 5004).
5020 Ports 5020-503F are identical in function to 5000-501F. These registers do not actually trigger interrupts. Since this IP core was meant for use with ARM, these ports were intended to drive the FIQ signal, but the eZ80 has no such alternative interrupts. However, these ports can be used for other purposes such as reading the state of the ON key.
5050 Read-only FFFFFFFF Revision register. Reads 0x00010900 for revision 1.9.0.
5054 Read-only FF Feature register for input number (IRQ). Reads the number of normal interrupts configured to be handled by the controller, which is 22.
5055 Read-only FF Feature register for input number (FIQ). Reads the number of FIQ interrupts configured to be handled by the controller, which is 22.