A quick tour around the GF180 chips.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

62 lines
3.1 KiB

1 year ago
1 year ago
  1. # (Quick and short) Virtual Roundtrip through the GF180 Open-Source Chips
  2. This document is a list of Open-Source Links to understand and examine the GF180 Open-Soruce Mikrochips. These chips were fabricated in 2023 and were payed by Google.
  3. Author: Thorsten Knoll
  4. Date: 07.12.2023
  5. Licence: Copyleft, GPL v3.0, https://www.gnu.org/licenses/gpl-3.0.html
  6. ## CMOS
  7. Task:
  8. Make yourself comfortable with the layers of a CMOS transistor. Later on you will try to match the layers and their names in different documents (GF180 PDK) and tools (Klayout).
  9. https://en.wikipedia.org/wiki/CMOS
  10. ## GlobalFoundry 180 (GF180) Open-Source PDK
  11. Task:
  12. This is the documentation of the GF180 Open-Source PDK. It is the base for understanding the inside of the chips. Try to get a hang of the structure of the documentation.
  13. GF180 PDK Read the docs:
  14. https://gf180mcu-pdk.readthedocs.io/en/latest/
  15. Task:
  16. You remember the layers (like nwell, polysilicon, metal1?). Try to make a match with the names and numbers in this layerlist. The numbers will appear later on in the tool KLayout.
  17. GF180 PDK, Layer List:
  18. https://gf180mcu-pdk.readthedocs.io/en/latest/physical_verification/design_manual/drm_04_1.html
  19. ## Find the GDS in the TapeOut resources
  20. TapeOut resources for all Google payed open-source shuttleruns:
  21. https://foss-eda-tools.googlesource.com/
  22. Task:
  23. Download and unpack the GDS of the chip you have. On the chip-package is a Projectnumber engraved (like C5, D5, B3).
  24. Step 1:
  25. GF180 Foundries list of projects. Take the Projectnumber and look up the Project-ID in the manifest csv. Make sure the name of the project matches with what you expect (example: C5, 023, tiny_user_project_74181_alu)
  26. https://foss-eda-tools.googlesource.com/third_party/shuttle/gf180mcu/mpw-000/foundry/
  27. Step 2:
  28. Walk around in the Repo of the Design (Project-ID is the slotnumber). Try to find the folder ```/tapeout/outputs/gds/```. Download the tarball of the gds and unpack.
  29. https://foss-eda-tools.googlesource.com/third_party/shuttle/gf180mcu/mpw-000/
  30. ## Inspect and examine the GDS with KLayout
  31. Task:
  32. Use the Open-Source tool KLayout to view the GDS file. Disable and enable single layers in the GDS, matching with the layerlist from the PDK docs. Zoom in and focus on a single standard cell. Zoom out to identify different areas of the chip. Identify (some of) these areas.
  33. Step 1:
  34. Install KLayout. Get it here: https://www.klayout.de/build.html
  35. Step 2:
  36. Open the unpacked GDS from the chip in KLayout. Make empty layers invisible. Match the non-empty layers with the docs of the PDK and the CMOS transistor layers. Try to find "The build order of the chip", according to the CMOS wiki.
  37. Step 3:
  38. ToDo:
  39. - Zoom In: Pick a single cell
  40. - Zoom out: Caravel Risc-V parts (Next chapter?)
  41. - User Wrapper and user area.
  42. ## Efabless Caravel Risc-V
  43. ToDo.
  44. https://caravel-harness.readthedocs.io/en/latest/
  45. https://github.com/efabless/caravel
  46. Problems:
  47. The caravel Risc-V development is fast, confusing and kinda mostly unstructured. There is a lot of deprecated information in the interwebs. I am not sure if i want to deal with that, as it feels like useless work to do. And the caravel on the GF180 chips did not get used for long.