Skip to content

Commit e1dff3b

Browse files
authored
Merge pull request #54 from makubacki/patina_updates
Patina updates
2 parents 6f2693f + e546211 commit e1dff3b

18 files changed

Lines changed: 132 additions & 543 deletions

guide_book/src/SUMMARY.md

Lines changed: 8 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -10,30 +10,28 @@
1010
- [Concepts](./intro/concepts/Concepts.md)
1111
- [A Quick Look at Rust](./intro/concepts/rust_quick_look.md)
1212
- [Patina](./intro/concepts/patina.md)
13-
- [Patina Evolution](./intro/concepts/patina_evolution.md)
14-
- [Patina Resources](./intro/concepts/patina_resources.md)
1513
- [Embedded Controller](./intro/concepts/Embedded_controller.md)
16-
- [EC Services](./intro/concepts/EC_Services.md)
14+
- [EC Services](./intro/concepts/EC_Services.md)
1715
-[EC Services Example](./intro/concepts/ec_services_example/ec_services_example.md)
1816
- [Sample System Implementation](./intro/concepts/ec_services_example/sample-system-implementation.md)
1917
- [Legacy EC Interface](./intro/concepts/ec_services_example/legacy_ec_interface.md)
20-
- [Secure EC Services](./intro/concepts/ec_services_example/secure-ec-services-overview.md)
18+
- [Secure EC Services](./intro/concepts/ec_services_example/secure-ec-services-overview.md)
2119
- [Tutorials](./intro/tutorial/tutorial.md)
2220
- [Discovery](./intro/tutorial/Discovery.md)
2321
- [Button](./intro/tutorial/UserButton.md)
2422
- [Listener](./intro/tutorial/LEDApi.md)
25-
- [Logic](./intro/tutorial/Logic.md)
23+
- [Logic](./intro/tutorial/Logic.md)
2624
- [Tracks of ODP](./tracks.md)
2725
- [What is in ODP?](./what/what.md)
28-
- [Building a virtual laptop](./laptop/laptop.md)
26+
- [Building a virtual laptop](./laptop/laptop.md)
2927
- [Setting up Development](./how/setting_up.md)
3028
[Introduction](./how/qemu/qemu_setup_guide.md)
3129
- [Setting up QEMU](./how/qemu/qemu-setup.md)
3230
- [Windbg Setup for QEMU](./how/qemu/qemu-windbg.md)
3331
- [Compiling UEFI for QEMU](./how/qemu/mu-tianocore-build.md)
3432
- [ACPI Customization](./how/qemu/qemu-acpi.md)
3533
- [Modifying Windows Image](./how/qemu/qemu-windows.md)
36-
34+
3735
- [Embedded Controller](./how/ec/embedded_controller.md)
3836
- [Battery](./how/ec/battery/0-overview.md)
3937
- [Battery Example Goals](./how/ec/battery/2-goals.md)
@@ -65,7 +63,7 @@
6563
- [MCU Firmware](./how/ec/thermal/mptf/mcu-firmware.md)
6664
- [Apps Interface](./how/ec/thermal/mptf/apps-interface.md)
6765
- [Debugging](./how/ec/thermal/mptf/mcu-debugging.md)
68-
- [Demo](./how/ec/thermal/mptf/mptf-demo.md)
66+
- [Demo](./how/ec/thermal/mptf/mptf-demo.md)
6967
- [Thermal Example Goals](./how/ec/thermal/2-goals.md)
7068
- [Thermal Example Approach](./how/ec/thermal/3-approach.md)
7169
- [Thermal Example Diagrams](./how/ec/thermal/4-diagrams.md)
@@ -86,15 +84,6 @@
8684
- [USB](./how/ec/usb.md)
8785
- [WiFi](./how/ec/wifi.md)
8886
- [Bluetooth](./how/ec/bluetooth.md)
89-
- [Patina](./how/patina/overview.md)
90-
- [Setting up for Patina](./how/patina/tree/setting_up_for_patina.md)
91-
- [Patina-dxe-core-qemu Code](./how/patina/tree/patina-dxe-core-qemu_code.md)
92-
- [Creating_a_Component](./how/patina/tree/creating_a_component.md)
93-
- [Using the Patina FW Patcher](./how/patina/tree/using_patina_fw_patcher.md)
94-
95-
- [Security](./how/patina/security.md)
96-
- [Runtime](./how/patina/runtime.md)
97-
- [Booting into Windows](./how/patina/windows.md)
9887

9988
- [Integrating the Virtual Laptop](./laptop/integrating.md)
10089
- [Summary and Takeaways](./conclusions.md)
@@ -109,8 +98,8 @@
10998
- [EC Power Service](./specs/ec_interface/ec-power-service.md)
11099
- [Battery Service](./specs/ec_interface/battery-service.md)
111100
- [Thermal Service](./specs/ec_interface/thermal-service.md)
112-
- [UCSI Interface](./specs/ec_interface/ucsi-interface.md)
113-
- [EC Input Management](./specs/ec_interface/ec-input-management.md)
101+
- [UCSI Interface](./specs/ec_interface/ucsi-interface.md)
102+
- [EC Input Management](./specs/ec_interface/ec-input-management.md)
114103
- [EC Time Alarm Service](./specs/ec_interface/ec-time-alarm-service.md)
115104
- [EC Debug Service](./specs/ec_interface/ec-debug-service.md)
116105
- [EC Manufacturing Service](./specs/ec_interface/ec-manufacturing-service.md)

guide_book/src/how/ec/bluetooth.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
_TODO_
44

5-
May or may not produce and example of implementing Bluetooth...
6-
If no example, there will at least be a discussion.
7-
This *might* move to Patina, although I think it may need to be on the EC for certain options to be practical. _TBD_
5+
May or may not produce and example of implementing Bluetooth...
6+
If no example, there will at least be a discussion.
7+
I think it may need to be on the EC for certain options to be practical. _TBD_

guide_book/src/how/ec/embedded_controller.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
_TODO_
44

5-
The Embedded Controller topic comes first, because this is where most of the modern features live and when we get to Patina, it will need to wait for this to be ready and then also connect to it for certain runtime operations.
5+
The Embedded Controller topic comes first, because this is where most of the modern features live, it will need to wait for this to be ready and then also connect to it for certain runtime operations.
66

77
Basic idea is to reference the Battery effort currently in place, and the soon to follow Charger and Thermal examples. This should provide a pretty good blueprint for building a mock or real EC for these components and inspire the pattern for things not covered by the examples.
88

guide_book/src/how/patina/overview.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

guide_book/src/how/patina/runtime.md

Lines changed: 0 additions & 3 deletions
This file was deleted.

guide_book/src/how/patina/security.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

guide_book/src/how/patina/tree/creating_a_component.md

Lines changed: 0 additions & 152 deletions
This file was deleted.
-192 KB
Binary file not shown.
-382 KB
Binary file not shown.

guide_book/src/how/patina/tree/patina-dxe-core-qemu_code.md

Lines changed: 0 additions & 31 deletions
This file was deleted.

0 commit comments

Comments
 (0)