Project

General

Profile

XMMBoot » History » Version 65

Denis 'GNUtoo' Carikli, 03/25/2020 04:28 AM

1 1 Denis 'GNUtoo' Carikli
h1. XMMBoot
2
3 59 Denis 'GNUtoo' Carikli
{{toc}}
4
5 1 Denis 'GNUtoo' Carikli
h2.  Introduction
6
7
For both libsamsung-ipc and the Linux driver it's interesting to understand better the boot of the modem in order to come with good names for the abstraction.
8
9 58 Denis 'GNUtoo' Carikli
h2. Abstraction
10
11
* hci_power -> link_power
12
13 63 Denis 'GNUtoo' Carikli
TODO:
14
* Find the difference between power_on and boot_power_on
15
** Look at the GPIOs and understand what they do
16
** Just read the code that use the GPIOs
17
** Diff both procedures
18
19 16 Denis 'GNUtoo' Carikli
h2. GPIOs
20
21 55 Denis 'GNUtoo' Carikli
h3. Devices GPIOs assignement and drivers
22 47 Denis 'GNUtoo' Carikli
23 49 Denis 'GNUtoo' Carikli
|_. Variant |_. SOC |_. Modem  |_. GPIO usage |_. GPIO assignement |
24 48 Denis 'GNUtoo' Carikli
| GT-I9300 | Exynos 4412 | XMM6262 | "CONFIG_UMTS_MODEM_XMM6262=y":https://git.replicant.us/replicant/kernel_samsung_smdk4412/tree/arch/arm/configs/lineageos_i9300_defconfig#n1350
25 1 Denis 'GNUtoo' Carikli
"Makefile":https://git.replicant.us/replicant/kernel_samsung_smdk4412/tree/drivers/misc/modem_if/Makefile#n10
26 49 Denis 'GNUtoo' Carikli
"modem_modemctl_device_xmm6262.c":https://git.replicant.us/replicant/kernel_samsung_smdk4412/tree/drivers/misc/modem_if/modem_modemctl_device_xmm6262.c | "CONFIG_SEC_MODEM_M0=y":https://git.replicant.us/replicant/kernel_samsung_smdk4412/tree/arch/arm/configs/lineageos_i9300_defconfig#n541
27
"Makefile":https://git.replicant.us/replicant/kernel_samsung_smdk4412/tree/arch/arm/mach-exynos/Makefile#n320
28 50 Denis 'GNUtoo' Carikli
"board-m0-modems.c":https://git.replicant.us/replicant/kernel_samsung_smdk4412/tree/arch/arm/mach-exynos/board-m0-modems.c 
29
"CONFIG_MACH_M0=y":https://git.replicant.us/replicant/kernel_samsung_smdk4412/tree/arch/arm/configs/lineageos_i9300_defconfig#n455
30 1 Denis 'GNUtoo' Carikli
"gpio-midas.h":https://git.replicant.us/replicant/kernel_samsung_smdk4412/tree/arch/arm/mach-exynos/include/mach/gpio-midas.h#n28
31
"gpio-rev00-m0.h":https://git.replicant.us/replicant/kernel_samsung_smdk4412/tree/arch/arm/mach-exynos/include/mach/gpio-rev00-m0.h |
32 55 Denis 'GNUtoo' Carikli
33
h3. GPIOs usage
34
35 65 Denis 'GNUtoo' Carikli
TODO: make sure to mention what applies to what device
36
* Start with I9300. Assume I9300 if device is not mentioned. Mention device when not I9300
37
* Add more devices and mention them
38
39 55 Denis 'GNUtoo' Carikli
|_. gpio platform data name |_. present |_. absent |_. Implementation |_. comments |
40
| gpio_cp_on | | | | powers on the modem? in which state (PMIC?, CPU?)
41
* On GT-I9100 it's connected to the ON1 modem pin and ON2 is not connected. |
42
| gpio_cp_reset | | | | Resets the modem CPU? PMIC?:
43
* "''check the reset timming with C2C connection''":https://git.replicant.us/replicant/kernel_samsung_smdk4412/tree/drivers/misc/modem_if/modem_modemctl_device_xmm6262.c#n106 : Here C2C probably means chip to chip
44
Can also read the modem CPU? and/or PMIC? reset state?
45
* "Reads from the GPIO and ''CP not ready, Active State low'' comment":https://git.replicant.us/replicant/kernel_samsung_smdk4412/tree/arch/arm/mach-exynos/board-m0-modems.c#n287 |
46
| gpio_reset_req_n | | | |
47
| gpio_pda_active | | | | Tell the modem if the SOC CPUs are sleeping/active or not?
48
* "PDA == Application processor":https://android.stackexchange.com/questions/176515/what-do-the-terms-bl-ap-cp-and-csc-mean-in-odin
49
* "''PDA_ACTIVE, let cp know AP sleep'' comment in status gc1-gpio.c":https://git.replicant.us/replicant/kernel_samsung_smdk4412/tree/arch/arm/mach-exynos/gc1-gpio.c#n213
50
* "PDA_ACTIVE set to 0 right after cpu_pm_enter()":https://git.replicant.us/replicant/kernel_samsung_smdk4412/tree/arch/arm/mach-exynos/cpuidle-exynos4.c#n701
51
* "PDA_ACTIVE set to 1 right before cpu_pm_exit()":https://git.replicant.us/replicant/kernel_samsung_smdk4412/tree/arch/arm/mach-exynos/cpuidle-exynos4.c#n796
52
* GPIO direction is output on AP side and input on BP side, which is also confirmed by the "pinout table in XDA":https://forum.xda-developers.com/galaxy-s2/help/how-to-talk-to-modem-commands-t1471241/page4 |
53
| gpio_phone_active | | | | |
54
| gpio_cp_dump_int | | | | cp: baseband processor |
55
| gpio_flm_uart_sel |\2. Only used for the Galaxy Nexus in libsamsung-ipc | | Modem download mode ? |
56
| gpio_cp_warm_reset | | | | cp: baseband processor |
57
| gpio_revers_bias_clear | | | | |
58
| gpio_revers_bias_restore | | | | |
59
| gpio_sim_detect | | | | Detect SIM card presence ? |
60 47 Denis 'GNUtoo' Carikli
61 53 Denis 'GNUtoo' Carikli
h3. Libsamsung-ipc
62 52 Denis 'GNUtoo' Carikli
63 1 Denis 'GNUtoo' Carikli
|/2. ioctl / function |\6. Devices |
64 54 Denis 'GNUtoo' Carikli
| GT-I9250 (maguro) | GT-I9100 | GT-I9300 | GT-N5100 | GT-N7100 | GT-P3100 / GT-P5100 (piranah) |
65 52 Denis 'GNUtoo' Carikli
| open, close, read, write 
66 1 Denis 'GNUtoo' Carikli
fmt/rfs
67
gprs
68 54 Denis 'GNUtoo' Carikli
power |\6. Yes |
69 52 Denis 'GNUtoo' Carikli
| boot_power
70 54 Denis 'GNUtoo' Carikli
status_online_wait | Yes |\5. No |
71 1 Denis 'GNUtoo' Carikli
| hci_power
72 52 Denis 'GNUtoo' Carikli
link_control_enable
73
link_control_active
74
link_control_wait
75 54 Denis 'GNUtoo' Carikli
link_get_hostwake_wait | No |\4. Yes | No |
76 52 Denis 'GNUtoo' Carikli
77 56 Denis 'GNUtoo' Carikli
h3. libsamsung-ipc <-> kernel functions <-> gpios
78 10 Denis 'GNUtoo' Carikli
79 56 Denis 'GNUtoo' Carikli
|_. libsamsung-ipc |_\3. Kernel |
80 57 Denis 'GNUtoo' Carikli
|_. Function using the ioctl |_. ioctl name |_. function pointer name |_. GPIO used |
81
| xmm626_kernel_smdk4412_power | IOCTL_MODEM_ON
82
IOCTL_MODEM_OFF | modem_on
83
modem_off | gpio_cp_on
84
gpio_cp_reset
85
gpio_reset_req_n
86
gpio_pda_active |
87 56 Denis 'GNUtoo' Carikli
| | | | gpio_phone_active |
88
| | | | gpio_cp_dump_int |
89 36 Denis 'GNUtoo' Carikli
| xmm626_kernel_smdk4412_boot_power | IOCTL_MODEM_BOOT_ON
90 1 Denis 'GNUtoo' Carikli
IOCTL_MODEM_BOOT_OFF | modem_boot_on
91 56 Denis 'GNUtoo' Carikli
modem_boot_off | gpio_flm_uart_sel |
92
| | | | gpio_cp_warm_reset |
93
| | | | gpio_revers_bias_clear |
94
| | | | gpio_revers_bias_restore |
95
| | | | gpio_sim_detect |
96 44 Denis 'GNUtoo' Carikli
97
h3. Glossary
98
99 60 Denis 'GNUtoo' Carikli
Terms for the modem:
100 61 Denis 'GNUtoo' Carikli
* BP: Baseband processor
101
* CP: Cellular? processor
102 60 Denis 'GNUtoo' Carikli
103
Term for the system on a chip running Replicant:
104
* AP: Application processor
105 1 Denis 'GNUtoo' Carikli
106 62 Denis 'GNUtoo' Carikli
TODO: move in its own page and point to it
107
108 16 Denis 'GNUtoo' Carikli
h3. SIM card presence detection
109 7 Denis 'GNUtoo' Carikli
110
Do we really want to check the SIM card presence?
111
112
Would it be possible not to for privacy reasons?
113
114
Example:
115
* Boot a modem with a SIM
116
* Take away the SIM card
117 1 Denis 'GNUtoo' Carikli
* Go to a protest with only the SIM card and a phone with no data on it to be able to call if necessary.
118 7 Denis 'GNUtoo' Carikli
119 16 Denis 'GNUtoo' Carikli
h3. TODO
120 1 Denis 'GNUtoo' Carikli
121
* check gpio_flm_uart_sel in smdk4412 kernel too
122 16 Denis 'GNUtoo' Carikli
123
h2. Modem partitions
124
125 30 Denis 'GNUtoo' Carikli
h3. GT-I9300, GT-N7100
126 3 Denis 'GNUtoo' Carikli
127 19 Denis 'GNUtoo' Carikli
|_. Location |_. Name |_. Content |
128 25 Denis 'GNUtoo' Carikli
| [ 0x0 -> 0xfff ] | ? | Partition table? |
129 31 Denis 'GNUtoo' Carikli
| [ 0x1000 -> 0xefff ] | PSIRAM | First stage bootloader? |
130
| [ 0xF000 -> 0x27fff ] | EBL | Second stage bootloader ? |
131 29 Denis 'GNUtoo' Carikli
| [ 0x28000 -> 0x9ff7ff ] | MAIN | ? |
132 28 Denis 'GNUtoo' Carikli
| [ 0x9ff800 -> 0x9fffff ] | SECPACK | ? |
133 1 Denis 'GNUtoo' Carikli
| [ 0xa00000 -> 0xbfffff ] | NV | ? |
134
135 31 Denis 'GNUtoo' Carikli
References for the table:
136
* https://git.replicant.us/replicant/external_libsamsung-ipc/tree/samsung-ipc/devices/i9300/i9300.h?id=9ff9785a7f48e32f107ca7fb2e298b1320ad4cbc
137
* https://git.replicant.us/replicant/external_libsamsung-ipc/tree/samsung-ipc/devices/n7100/n7100.h?id=9ff9785a7f48e32f107ca7fb2e298b1320ad4cbc
138
* Verified on GT-I9300 and GT-N7100 modem partition table
139 23 Denis 'GNUtoo' Carikli
140 32 Denis 'GNUtoo' Carikli
h4. GT-I9300 and GT-N7100 modem partition table dump
141 23 Denis 'GNUtoo' Carikli
142
<pre>
143 24 Denis 'GNUtoo' Carikli
$ hexdump -C RADIO.img
144
00000000  50 53 49 52 41 4d 00 00  00 00 00 00 00 10 00 00  |PSIRAM..........|
145
00000010  00 00 00 00 00 e0 00 00  00 00 00 00 00 00 00 00  |................|
146
00000020  45 42 4c 00 00 00 00 00  00 00 00 00 00 f0 00 00  |EBL.............|
147
00000030  00 00 00 60 00 90 01 00  00 00 00 00 00 00 00 00  |...`............|
148
00000040  4d 41 49 4e 00 00 00 00  00 00 00 00 00 80 02 00  |MAIN............|
149
00000050  00 00 30 60 00 78 9d 00  00 00 00 00 00 00 00 00  |..0`.x..........|
150
00000060  53 45 43 50 41 43 4b 00  00 00 00 00 00 f8 9f 00  |SECPACK.........|
151
00000070  00 00 00 00 00 08 00 00  00 00 00 00 00 00 00 00  |................|
152
00000080  4e 56 00 00 00 00 00 00  00 00 00 00 00 00 a0 00  |NV..............|
153
00000090  00 00 e8 60 00 00 20 00  00 00 00 00 00 00 00 00  |...`.. .........|
154
000000a0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
155
*
156
[...]
157 1 Denis 'GNUtoo' Carikli
</pre>
158 32 Denis 'GNUtoo' Carikli
159
h3. Devices without a partition table or with a different one
160
161
* GT-I9250
162 17 Denis 'GNUtoo' Carikli
163 1 Denis 'GNUtoo' Carikli
h2. Links
164
165 45 Denis 'GNUtoo' Carikli
* "modem_modemctl_device_xmm6262.c":https://git.replicant.us/replicant/kernel_samsung_smdk4412/tree/drivers/misc/modem_if/modem_modemctl_device_xmm6262.c
166 1 Denis 'GNUtoo' Carikli
* https://forum.xda-developers.com/galaxy-s2/help/how-to-talk-to-modem-commands-t1471241/page4
167 45 Denis 'GNUtoo' Carikli
* http://www.arteris.com/blog/bid/59433/Interchip-Connectivity-HSIC-UniPro-HSI-C2C-LLI-oh-my
168 64 Denis 'GNUtoo' Carikli
** TODO: move this link somewhere where it's more useful