forked from wafer-space/wafer-space.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtechnology.html
More file actions
200 lines (185 loc) · 6.59 KB
/
Copy pathtechnology.html
File metadata and controls
200 lines (185 loc) · 6.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
---
layout: default
title: "Technology"
sub_title: "GF180MCU process details and what you can build"
header_image: "/assets/images/header/mpw-one-partial-dice-top-1.jpg"
user_steps:
enable: true
title: "Your Steps"
sub_title: "What you need to do to get your chip manufactured"
steps:
- number: "01"
title: "Reserve"
description: "Join the campaign and secure your manufacturing slot"
color: "blue"
- number: "02"
title: "Design"
description: "Create your chip using the open GF180MCU PDK and your preferred tools"
color: "green"
- number: "03"
title: "Sign-off"
description: "Complete DRC/LVS/ERC checks and follow our design guidelines"
color: "purple"
- number: "04"
title: "Submit"
description: "Provide your tape-in files following our submission checklist"
color: "pink"
wafer_steps:
enable: true
title: "We Handle"
sub_title: "What wafer.space takes care of for you"
steps:
- number: "05"
title: "Fabrication"
description: "We process your design in our pooled multi-project wafer run"
color: "orange"
- number: "06"
title: "Dicing"
description: "We dice the wafers and prepare your parts for shipment"
color: "yellow"
- number: "07"
title: "Delivery"
description: "We ship your ~1,000 bare dies and any optional packaging"
color: "rose"
technical_specs:
enable: true
title: "Technical Specifications"
sub_title: "GF180MCU Process Technology Details"
image: "assets/images/products/gf180mcu-wafer-isometric.jpg"
specs:
- title: "Slot Options"
value: "4 Sizes"
detail: "Full, Quarter, Half Width, Half Height"
icon: "jam jam-crop"
color: "blue"
- title: "Process Node"
value: "180nm MCU"
detail: '<a href="https://gf180mcu-pdk.readthedocs.io/" target="_blank" class="text-decoration-none">GlobalFoundries GF180MCU</a>'
icon: "jam jam-cog"
color: "green"
- title: "Metal Layers"
value: "5 Layers"
detail: "Full routing capability"
icon: "jam jam-layers"
color: "purple"
- title: "Quantity"
value: "1,000 dies"
detail: "Per manufacturing slot"
icon: "jam jam-box"
color: "orange"
- title: "Capacitors"
value: "MIM & MOS"
detail: "Metal-insulator-metal and MOS capacitors available"
icon: "jam jam-battery"
color: "pink"
- title: "Resistors"
value: "Poly & High-Res"
detail: "Multiple resistor types"
icon: "jam jam-thunder"
color: "yellow"
---
{% include layouts/nav/nav.html drop_search=false alignment_class="ms-auto" %}
{% include layouts/header/page-title.html %}
<!-- How It Works -->
<div class="wrapper light-wrapper">
<div class="container inner">
<h2 class="section-title mb-40 text-center">How wafer.space works</h2>
<p class="lead larger text-center">Getting from your design to manufactured silicon is a collaborative process. You handle the design and submission, we take care of fabrication and delivery.</p>
<div class="space40"></div>
</div>
</div>
<!-- User Steps -->
{% if page.user_steps.enable %}
<div class="wrapper gray-wrapper">
<div class="container inner">
<h2 class="section-title mb-40 text-center">{{page.user_steps.title}}</h2>
<p class="lead larger text-center mb-40">{{page.user_steps.sub_title}}</p>
<div class="row gutter-50 gutter-md-30 process-wrapper line text-center">
{% for step in page.user_steps.steps %}
<div class="col-md-3 col-lg-3">
<span class="icon icon-blob icon-blob-{{step.color}} mb-30">
<span class="number color-{{step.color}}">{{step.number}}</span>
</span>
<h5>{{step.title}}</h5>
<p>{{step.description}}</p>
</div>
{% endfor %}
</div>
</div>
</div>
{% endif %}
<!-- Transition -->
<div class="wrapper light-wrapper">
<div class="container inner text-center">
<h3 class="display-4 mb-30">Once you submit, we take over...</h3>
<p class="lead larger">After you complete your design and submission, wafer.space handles all the manufacturing logistics for you.</p>
</div>
</div>
<!-- Wafer.space Steps -->
{% if page.wafer_steps.enable %}
<div class="wrapper gray-wrapper">
<div class="container inner">
<h2 class="section-title mb-40 text-center">{{page.wafer_steps.title}}</h2>
<p class="lead larger text-center mb-40">{{page.wafer_steps.sub_title}}</p>
<div class="row gutter-50 gutter-md-30 process-wrapper line text-center justify-content-center">
{% for step in page.wafer_steps.steps %}
<div class="col-md-4 col-lg-4">
<span class="icon icon-blob icon-blob-{{step.color}} mb-30">
<span class="number color-{{step.color}}">{{step.number}}</span>
</span>
<h5>{{step.title}}</h5>
<p>{{step.description}}</p>
</div>
{% endfor %}
</div>
</div>
</div>
{% endif %}
<!-- Technical Specifications -->
{% if page.technical_specs.enable %}
<div class="wrapper light-wrapper">
<div class="container inner">
<div class="row">
<div class="col-md-8 mx-auto text-center">
<h2 class="title-color color-gray">{{page.technical_specs.title}}</h2>
<h3 class="display-3">{{page.technical_specs.sub_title}}</h3>
<div class="space40"></div>
</div>
</div>
<div class="row align-items-center">
{% if page.technical_specs.image %}
<div class="col-lg-6">
<figure>
<img src="{{ page.technical_specs.image | relative_url }}" alt="{{page.technical_specs.title}}" class="img-fluid"/>
</figure>
</div>
{% endif %}
<div class="col-lg-6">
<div class="row gutter-30">
{% for spec in page.technical_specs.specs %}
<div class="col-md-6 mb-30">
<div class="d-flex align-items-start">
<div class="icon icon-blob icon-blob-{{spec.color}} color-{{spec.color}} mr-20 mt-5" style="min-width: 60px;">
<i class="{{spec.icon}}"></i>
</div>
<div>
<h6 class="mb-5">{{spec.title}}</h6>
<p class="mb-0 font-weight-600 color-dark">{{spec.value}}</p>
<p class="mb-0 text-muted small">{{spec.detail}}</p>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
</div>
</div>
{% endif %}
<!-- Run 1 Design Showcase -->
{% include components/run1-showcase.html %}
<!-- Silicon Density & Capacity -->
{% include components/silicon-density.html %}
<!-- Call to Action -->
{% include components/cta-design-help.html %}
{% include layouts/footer/footer-1.html %}