Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions W10D2/menu.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[Yang Jincheng's Arch Note](w10d2-yjc/Arch-Note-W10D2.md)
69 changes: 69 additions & 0 deletions W10D2/w10d2-yjc/Arch-Note-W10D2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
# Arch Note W10 D2

> written by Yang Jin-cheng

## Async v.s. Sync

> async technique
>
> H/W done by interruption
>
> S/W done by call

+ Interruption I/O

+ Internet

+ ATM (async transfer mode) / ISDN model

ATM is widely used in the US

ISDN is mainly used in the Euro

### Intel's Solution for H/W Interruption

![](interruption.svg)

8086: central controller

8259: interruption controller

INT: external device tell core to stall and switch I/O port (a unilateral signal)

IC design: handle INT signals, can be multi-stage

### Modern Solution for H/W Interruption

#### APIC

![](modern.svg)

APIC: advanced programmable IC

signal path: I/O device -> bus -> APIC -> core

#### Daisy Chain

![](daisy.svg)

rely other I/O devices on INT signal transmission

relatively slow but highly scalable

#### Internet Async Solution

+ MIN: multi-stage interchange network (faster)

O(nlogn) time complexity in data interchange

+ SDN: software defined network (slower)

better robust and scalability

+ ISDN: intergrade service digital network

VC (virtual connection) technique

use telephone network (sync) for internet transformation (async)

+ TCP/IP: devide data into packages (better robust)
4 changes: 4 additions & 0 deletions W10D2/w10d2-yjc/daisy.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading