simultaneous template optimization and mask assignment for ... · y. badr, et al., “mask...

32
Simultaneous Template Optimization and Mask Assignment for DSA with Multiple Patterning 1 Jian Kuang, Junjie Ye, Evangeline F.Y. Young Department of Computer Science and Engineering The Chinese University of Hong Kong 香港中文大學

Upload: others

Post on 22-Jul-2020

3 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Simultaneous Template Optimization and Mask Assignment for ... · Y. Badr, et al., “Mask assignment and synthesis of DSA-MP hybrid lithography for sub-7nm contacts/vias,” in Proc

Simultaneous Template Optimization and MaskAssignment for DSA with Multiple Patterning

1

Jian Kuang, Junjie Ye, Evangeline F.Y. Young

Department of Computer Science and Engineering

The Chinese University of Hong Kong

香 港 中 文 大 學

Page 2: Simultaneous Template Optimization and Mask Assignment for ... · Y. Badr, et al., “Mask assignment and synthesis of DSA-MP hybrid lithography for sub-7nm contacts/vias,” in Proc

Outline Introduction to DSA & Multiple Patterning Problem Formulation DSA with Double Patterning DSA with Triple Patterning Results & Conclusions

2

Page 3: Simultaneous Template Optimization and Mask Assignment for ... · Y. Badr, et al., “Mask assignment and synthesis of DSA-MP hybrid lithography for sub-7nm contacts/vias,” in Proc

DSA Directed Self-Assembly contact/via manufacturing promising Next Generation Lithography for 10nm

3

Page 4: Simultaneous Template Optimization and Mask Assignment for ... · Y. Badr, et al., “Mask assignment and synthesis of DSA-MP hybrid lithography for sub-7nm contacts/vias,” in Proc

DSA guiding templates are needed to form the vias

(contacts) correctly single-hole template v.s. multiple-hole template costs of templates: # of holes, irregular shape, distance

4

Page 5: Simultaneous Template Optimization and Mask Assignment for ... · Y. Badr, et al., “Mask assignment and synthesis of DSA-MP hybrid lithography for sub-7nm contacts/vias,” in Proc

Multiple patterning divide the features into multiple masks coloring problem

5

Page 6: Simultaneous Template Optimization and Mask Assignment for ... · Y. Badr, et al., “Mask assignment and synthesis of DSA-MP hybrid lithography for sub-7nm contacts/vias,” in Proc

DSA + multiple patterning

Step 1: multiple masks to print templates

Step 2: templates to guide the DSA process

6

Page 7: Simultaneous Template Optimization and Mask Assignment for ... · Y. Badr, et al., “Mask assignment and synthesis of DSA-MP hybrid lithography for sub-7nm contacts/vias,” in Proc

DSA + multiple patterning for two vias within a threshold-distance

on different masks or

on the same mask & grouped (in the same template)

otherwise, an UnResolved Conflict (URC) occurs

7

template cost reduced

URC

Page 8: Simultaneous Template Optimization and Mask Assignment for ... · Y. Badr, et al., “Mask assignment and synthesis of DSA-MP hybrid lithography for sub-7nm contacts/vias,” in Proc

DSA + multiple patterning DSA with double patterning (2 masks)

DSA with triple patterning (3 masks)

simultaneously perform grouping (into the same template) and mask assignment

8

Page 9: Simultaneous Template Optimization and Mask Assignment for ... · Y. Badr, et al., “Mask assignment and synthesis of DSA-MP hybrid lithography for sub-7nm contacts/vias,” in Proc

Outline Introduction to DSA & Multiple Patterning Problem Formulation DSA with Double Patterning DSA with Triple Patterning Results & Conclusions

9

Page 10: Simultaneous Template Optimization and Mask Assignment for ... · Y. Badr, et al., “Mask assignment and synthesis of DSA-MP hybrid lithography for sub-7nm contacts/vias,” in Proc

Conflict graph G(V, Eg∪En) nodes: vias (V) edges: inter-distance < threshold

dash edges: grouping edges (Eg) two vias can be grouped (into the same template) only horizontally/vertically aligned vias can be grouped

solid edges : non-grouping edges (En)

10close & aligned

build graph

Page 11: Simultaneous Template Optimization and Mask Assignment for ... · Y. Badr, et al., “Mask assignment and synthesis of DSA-MP hybrid lithography for sub-7nm contacts/vias,” in Proc

Incompatible grouping a set of grouping edges are incompatible if they

cannot be used for grouping at the same time when max_template_size = 2 (single-hole or 2-

hole templates only), any adjacent grouping edges are incompatible

e1 and e2 are incompatible11

Page 12: Simultaneous Template Optimization and Mask Assignment for ... · Y. Badr, et al., “Mask assignment and synthesis of DSA-MP hybrid lithography for sub-7nm contacts/vias,” in Proc

Problem definition Given a layout of contacts/vias and N masks, assign the features

to different masks and group some of the features

such that no incompatible groupings happen minimize # of URCs (unresolved conflicts)

minimize total cost of the used DSA templates

12

Page 13: Simultaneous Template Optimization and Mask Assignment for ... · Y. Badr, et al., “Mask assignment and synthesis of DSA-MP hybrid lithography for sub-7nm contacts/vias,” in Proc

Outline Introduction to DSA & Multiple Patterning Problem Formulation DSA with Double Patterning DSA with Triple Patterning Results & Conclusions

13

Page 14: Simultaneous Template Optimization and Mask Assignment for ... · Y. Badr, et al., “Mask assignment and synthesis of DSA-MP hybrid lithography for sub-7nm contacts/vias,” in Proc

Simplified graph problem

G(V, Eg∪En) set edge cost set incompatible constraints

N-color (2 or 3-color) graph and minimize cost of invalid edges (edges whose end-nodes have the same color)

14

𝑐𝑜𝑠𝑡 𝑒 = {𝑇𝑒𝑚𝑝𝑙𝑎𝑡𝑒_𝑐𝑜𝑠𝑡 𝑒 , 𝑖𝑓𝑒 ∈ grouping

𝑈𝑅𝐶𝑐𝑜𝑠𝑡, 𝑖𝑓 𝑒 ∉ grouping

cost = cost(e1)+cost(e2)

Page 15: Simultaneous Template Optimization and Mask Assignment for ... · Y. Badr, et al., “Mask assignment and synthesis of DSA-MP hybrid lithography for sub-7nm contacts/vias,” in Proc

Simplified graph problem

N-color (2 or 3-color) graph and minimize cost of invalid edges

Simplified Graph Problem:delete min-cost edges to make remaining graph N-colorable

If a grouping edge (a,b) is removed: a and b are grouped If a non-grouping edge (a,b) is removed: a and b has a URC

15

cost = cost(e1)+cost(e2)

Page 16: Simultaneous Template Optimization and Mask Assignment for ... · Y. Badr, et al., “Mask assignment and synthesis of DSA-MP hybrid lithography for sub-7nm contacts/vias,” in Proc

Dividing conflict graph identify bridges, independent components… to divide

conflict graph into subgraphs

in highly dense layout, more than 99.9% of the subgraphs are planar

first solve planar subgraphs non-planar graphs can be modified to planar

first assume max_template_size = 216

Page 17: Simultaneous Template Optimization and Mask Assignment for ... · Y. Badr, et al., “Mask assignment and synthesis of DSA-MP hybrid lithography for sub-7nm contacts/vias,” in Proc

Exact method for Simplified Graph Problem

Constrained Edge Deletion Bipartite Problem

Constrained Odd Vertex Pairing (OVP) on dual graph

17

2-colorable

dual graph

A B C D: faces

OVP: remove edge to make graph w/o odd-degree vertex

a graph is 2-colorable iff no odd cycle

Page 18: Simultaneous Template Optimization and Mask Assignment for ... · Y. Badr, et al., “Mask assignment and synthesis of DSA-MP hybrid lithography for sub-7nm contacts/vias,” in Proc

Exact method for Simplified Graph Problem

Constrained OVP

a set of subproblemseach subproblem is OVP w/o constraints

18

Page 19: Simultaneous Template Optimization and Mask Assignment for ... · Y. Badr, et al., “Mask assignment and synthesis of DSA-MP hybrid lithography for sub-7nm contacts/vias,” in Proc

Finding all subproblems edge constraint graph

all subproblems all maximal independent sets of

19

Maximal Independent Set: adding any element will make it not independent

Page 20: Simultaneous Template Optimization and Mask Assignment for ... · Y. Badr, et al., “Mask assignment and synthesis of DSA-MP hybrid lithography for sub-7nm contacts/vias,” in Proc

Algorithm

for each maximal independent set Imodify weights of grouping edges I as ∞ call OVP solver edges I will not be removed edges I may or may not be removed

it is guaranteed removed grouping edges are always compatible the minimum cost result returned by OVP solver is

optimal20

Page 21: Simultaneous Template Optimization and Mask Assignment for ... · Y. Badr, et al., “Mask assignment and synthesis of DSA-MP hybrid lithography for sub-7nm contacts/vias,” in Proc

Accurate formulation on graph

21

Simplified: If a grouping edge (a,b) is removed: a and b are grouped

Accurate: If a grouping edge (a,b) is removed: a and b are grouped or a and b has a URC (2 vias that can be grouped can also have a URC)

reduce from accurate to simplified by adding dummy nodes/edges

Page 22: Simultaneous Template Optimization and Mask Assignment for ... · Y. Badr, et al., “Mask assignment and synthesis of DSA-MP hybrid lithography for sub-7nm contacts/vias,” in Proc

Extension to larger templates max_template_size > 2

Problem: how to calculate cost of larger templates accurately?

Solution: add dummy nodes and edges to graph

22

Page 23: Simultaneous Template Optimization and Mask Assignment for ... · Y. Badr, et al., “Mask assignment and synthesis of DSA-MP hybrid lithography for sub-7nm contacts/vias,” in Proc

Outline Introduction to DSA & Multiple Patterning Problem Formulation DSA with Double Patterning DSA with Triple Patterning Results & Conclusions

23

Page 24: Simultaneous Template Optimization and Mask Assignment for ... · Y. Badr, et al., “Mask assignment and synthesis of DSA-MP hybrid lithography for sub-7nm contacts/vias,” in Proc

LUT based method Problem: remove edge to make graph 3-colorable

divide the conflict graph to subgraphs build LUT of small graphs

24

match

Page 25: Simultaneous Template Optimization and Mask Assignment for ... · Y. Badr, et al., “Mask assignment and synthesis of DSA-MP hybrid lithography for sub-7nm contacts/vias,” in Proc

Match with LUT

25

yes

no

3-colorable?

map color

remove edge

heuristic to modify graph

yes

no

matched?

Page 26: Simultaneous Template Optimization and Mask Assignment for ... · Y. Badr, et al., “Mask assignment and synthesis of DSA-MP hybrid lithography for sub-7nm contacts/vias,” in Proc

Critical /Semi-critical edge for each non-3-colorable graph in LUT

critical edge: its removal make a graph 3-colorable semi-critical edge: after removing it, there will be

removable (degree < 3) nodes

26

criticalsemi-criticalothers

Page 27: Simultaneous Template Optimization and Mask Assignment for ... · Y. Badr, et al., “Mask assignment and synthesis of DSA-MP hybrid lithography for sub-7nm contacts/vias,” in Proc

Algorithm for removing edges e=min-cost critical edge

e is grouping edge: return removing e (optimal)

e is non-grouping edge or e=null: try to remove each semi-critical edge se simplify graph and recursively call the algorithm get a set of possible solutions and find min-cost one

27

semi-critical

critical

Page 28: Simultaneous Template Optimization and Mask Assignment for ... · Y. Badr, et al., “Mask assignment and synthesis of DSA-MP hybrid lithography for sub-7nm contacts/vias,” in Proc

Outline Introduction to DSA & Multiple Patterning Problem Formulation DSA with Double Patterning DSA with Triple Patterning Results & Conclusions

28

Page 29: Simultaneous Template Optimization and Mask Assignment for ... · Y. Badr, et al., “Mask assignment and synthesis of DSA-MP hybrid lithography for sub-7nm contacts/vias,” in Proc

Results for DSA + Double Patterning

29Y. Badr, et al., “Mask assignment and synthesis of DSA-MP hybrid lithography for sub-7nm contacts/vias,” in Proc. DAC, June 2015.

0

500

1000

1500

2000

2500

3000

dp1

Via1

dp1

Via2

ed1

Via1

ed1

Via2

fft

Via1

fft

Via2

mm

Via1

mm

Via2

pb1

Via1

pb1

Via2

URC #

0

5000

10000

15000

20000

25000

30000

35000

40000

45000

dp1

Via1

dp1

Via2

ed1

Via1

ed1

Via2

fft

Via1

fft

Via2

mm

Via1

mm

Via2

pb1

Via1

pb1

Via2

Template Cost

DAC'15

Ours

target at 10nm Via1 and Via2

significantly reduce URC# and Template Cost

resolve 400,000 vias in 2.8 seconds

verified by ILP: our result is optimal for planar graphs

Page 30: Simultaneous Template Optimization and Mask Assignment for ... · Y. Badr, et al., “Mask assignment and synthesis of DSA-MP hybrid lithography for sub-7nm contacts/vias,” in Proc

Results for DSA + Triple Patterning

30Y. Badr, et al., “Mask assignment and synthesis of DSA-MP hybrid lithography for sub-7nm contacts/vias,” in Proc. DAC, June 2015.

0

5

10

15

20

25

dp1

Via1

dp1

Via2

ed1

Via1

ed1

Via2

fft

Via1

fft

Via2

mm

Via1

mm

Via2

pb1

Via1

pb1

Via2

URC#

0

5000

10000

15000

20000

25000

30000

35000

40000

dp1

Via1

dp1

Via2

ed1

Via1

ed1

Via2

fft

Via1

fft

Via2

mm

Via1

mm

Via2

pb1

Via1

pb1

Via2

Template Cost

DAC'15

Ours

reduction on Template Cost is even larger

resolve 400,000 vias within 3.6 seconds

Page 31: Simultaneous Template Optimization and Mask Assignment for ... · Y. Badr, et al., “Mask assignment and synthesis of DSA-MP hybrid lithography for sub-7nm contacts/vias,” in Proc

Conclusions

31

DSA + Double/Triple Patterning

Co-optimize template cost and mask assignment

Reduce manufacturing cost remarkably

Page 32: Simultaneous Template Optimization and Mask Assignment for ... · Y. Badr, et al., “Mask assignment and synthesis of DSA-MP hybrid lithography for sub-7nm contacts/vias,” in Proc

Thanks!

32