1
00:00:00,233 --> 00:00:04,800
Hello everyone, today let's learn about the standby condition of the Apple EC
2
00:00:06,266 --> 00:00:08,833
This lesson is divided into two parts,
3
00:00:09,333 --> 00:00:11,700
one is the introduction of Apple EC,
4
00:00:12,500 --> 00:00:15,466
the other is the standby condition of Apple EC
5
00:00:17,000 --> 00:00:20,466
First, let's take a look at the introduction of Apple EC
6
00:00:21,600 --> 00:00:24,200
EC refers to embedded controller,
7
00:00:25,700 --> 00:00:30,866
it is a single chip microcomputer, we can also call it MCU
8
00:00:31,766 --> 00:00:37,300
The EC controls the timing of most important signals during system startup
9
00:00:38,766 --> 00:00:40,266
In the shutdown state,
10
00:00:40,366 --> 00:00:44,266
the EC keeps running and waits for the user's startup information
11
00:00:49,133 --> 00:00:56,566
After being turned on, the EC controls various indicators, fans and other devices
12
00:00:57,700 --> 00:01:02,200
It even controls the standby, sleep and other states of the system,
13
00:01:02,500 --> 00:01:05,966
and monitors the voltage and current of each supply
14
00:01:06,533 --> 00:01:11,133
There is a slight difference between the Apple EC and the normal laptop EC
15
00:01:12,466 --> 00:01:16,700
Apple's EC doesn't have a management for keyboard or touchpad,
16
00:01:17,900 --> 00:01:21,133
and Apple's EC comes with built-in programs
17
00:01:23,266 --> 00:01:29,533
During the maintenance, if the EC is to be replaced, the same board must be found
18
00:01:37,533 --> 00:01:41,233
Ok, let's take a look at the standby condition of the Apple EC
19
00:01:42,866 --> 00:01:47,766
The standby conditions of Apple EC are divided into four categories
20
00:01:48,133 --> 00:01:54,933
They are standby power supply, standby clock, standby reset, and EC program
21
00:01:58,066 --> 00:02:02,233
First of all, the standby power supply is 3.3V,
22
00:02:02,933 --> 00:02:08,600
and the common names in the circuit diagram are VBAT and VDDA
23
00:02:11,666 --> 00:02:19,600
It is usually provided by PP3V42_G3H, or PP3V3_G3H
24
00:02:20,600 --> 00:02:25,566
The standby clock of the EC is provided by a 12MHz crystal,
25
00:02:27,800 --> 00:02:30,833
which is usually located next to the EC
26
00:02:34,800 --> 00:02:40,200
The standby reset of the EC is usually named RST* in the circuit diagram,
27
00:02:44,833 --> 00:02:49,566
and the external name is usually SMC_RESET_L
28
00:02:58,133 --> 00:03:01,833
This signal is usually high at 3.3V
29
00:03:05,066 --> 00:03:08,200
If it is low, the EC will be reset
30
00:03:15,833 --> 00:03:19,033
The EC program is stored inside the EC
31
00:03:21,833 --> 00:03:27,566
After the EC meets the requirements of standby power supply, clock, and reset,
32
00:03:28,066 --> 00:03:32,900
it needs to read its own internal program to configure its GPIO pin,
33
00:03:34,333 --> 00:03:36,100
and then it can work normally
34
00:03:37,433 --> 00:03:40,700
GPIO refers to General Purpose Input Output pins
35
00:03:41,566 --> 00:03:44,166
Before the GPIO pin is configured,
36
00:03:44,966 --> 00:03:48,800
It is in a high resistance, uncontrolled state
37
00:03:51,900 --> 00:03:55,266
Ok, so that's the standby condition of the Apple EC