xyalis-logo

Is it time to switch to OASIS.MASK ?

-

By Dr Philippe Morey-Chaisemartin & Frederic Brault
XYALIS, France.

A summary of OASISĀ Ā® standard advantages and weaknesses is presented, based on six years of experience with customer databases.Ā A new standard, OASIS.MASK, is being introduced to address the requirements specific to photomask layout representation. This subset of OASISĀ Ā® (and as such fully OASISĀ Ā® compliant) introduces constraints that reflect the real-world limitations of mask manufacturing. As a result, OASIS.MASK interpretation and exploitation is more efficient and reliable.

I. INTRODUCTION

Six years ago, as OASISĀ Ā® was introduced, we published an article highlighting why it was a positive replacement for GDSII [3]. Since then, users have started adopting OASISĀ Ā® in their flows, with benefits and disadvantages. One of OASISĀ Ā® strengths is its flexibility (unlimited coordinate precision, unlimited number of layers, etc…). But this flexibility puts unnecessary stress on layout database processing tools, in terms of memory consumption and computing times.

A new standard, OASIS.MASK, is being introduced to address the requirements specific to photomask layout representation. This new standard, a subset of OASISĀ Ā®, and as such fully compliant with it, introduces constraints that reflect the real-world limitations of mask manufacturing (such as a limited number of masks per process…) that make the interpretation and exploitation of the OASIS.MASK databases more efficient and reliable.

Based on six years of experience with customer databases, this white paper presents a summary of OASISĀ Ā® standard advantages and weaknesses. It reviews the constraints introduced in OASIS.MASK and highlights the benefits of using the new format. Some critical points related to too restrictive limitations are pointed out for consideration in future versions of the standard, and suggestions to improve its usability are detailed. Finally the white paper explains how the global flow from design to mask can be improved by the introduction of this format.

II. OASISĀ®: A REVIEW

A. The format

1) History

GDSII was introduced by Calma in 1978 as a successor of GDS format created in 1971. For 30 years, no major change has been made to this de-facto standard while chips complexity has been multiplied by 105 to 106. As a result, numerical values required to describe geometries of nanoscale structures on 300mm wafers have reached the 32 bits limits of GDSII format. The size of GDSII files is also becoming a problem, and compression is not always the best solution.

To address such issues, the OASISĀ Ā® format (officially SEMI P39) was developed and its first official specification was released in 2004 [6].

2) Main features

GDSII was originally created for sequential file access. It is still called a ā€œstream formatā€ and has been designed for magnetic tapes which were the only media at the time able to store big amount of data. Designers still call the release milestone a ā€œTape Outā€, even though most people have forgotten (or never known !) what an actual tape was.

Nowadays, sequential access is not an interesting property anymore and one of the new features offered by OASISĀ Ā® was to give direct access to parts of the file. To allow this, OASISĀ Ā® offers the possibility to store indexes in reference tables either at the beginning or the end of file (see II-B1 for further details). In addition to faster random access, OASISĀ Ā® goals were to reduce file size and remove some critical limitations such as numerical precision. To meet this second requirement, the original restriction of 32 bits for all integer values has been removed. In the same way, the original limitation of GDSII to 256 layers and 256 datatypes has been cancelled.

To reduce file size, many different optimization methods have been implemented. The main idea is to avoid information repetition. For example, when reading a record in an OASISĀ Ā® file, a simple flag can tell the parser that the required information (cell name, layer, coordinate…) is the same as for the previous record.

Another optimization is to provide a large number of different record types and then to reduce the amount of information contained in the record itself. For example, in GDSII all shapes are identified by the same record type: BOUNDARY. It is then mandatory to list the coordinates of all vertices to fully describe the shape. In OASISĀ Ā®, a square is not defined as a generic BOUNDARY record, but as a special type. The only required information are the coordinate of the lower left corner and the size of the square. This is true for most common configurations, which have their own record type: there are 26 different types of trapezoids (including the square) and 11 types of repetitions (including standard arrays). Defining a displacement between 2 coordinates is also declined in different types: pure horizontal displacement, pure vertical displacement, diagonal… So, in most cases, only 1 value is required instead of a delta-X and delta-Y.

This makes OASISĀ Ā® files really compact. Considering that compression algorithms are based on the factorization of repetitions in a file, it is easy to understand that the compression ratio of an OASISĀ Ā® file with standard tools like gzip or bzip is not very high. OASISĀ Ā® files are compressed by construction and it is usually a bad idea to zip them again as you would then lose the first benefit of the format: random access.

B. How has it been used ?

1) Reference tables

In OASISĀ Ā®, reference to an object can most of the time be made either by its name or by a reference number. For example, a PLACEMENT record can call a cell by its cell name, or directly by a reference number. When thousands of cells are declared and instantiated, using reference numbers can really reduce the size of the resulting OASISĀ Ā®Ā file. When reference numbers are used (for cell names, strings, properties, …), the file must contain declarations that associate a reference number with a character string. According to the OASISĀ Ā® specification, these declarations can appear anywhere in the file. This implies that, in general, OASISĀ Ā® files cannot be properly handled until they have been fully parsed by the reader.

To improve access times, OASISĀ Ā® also allows these declarations to be written contiguously in ā€œtablesā€. The START record of the file then contains the offset of these tables, which can be directly accessed by the reader. As a convenience for OASISĀ Ā® writers, the offsets can also be put in the END record : this way, the file can be written sequentially, without having to ā€œpatchā€ the START record afterwards (which is hard to do when writing a compressed stream).

In the latter case, the reader now has to seek to the end of the file to know the table offsets. This becomes a problem when using an external tool to compress the file (such as zip), as most compression schemes do not allow random access.

2) Strict mode

OASISĀ Ā® strict mode is a way to take advantage of reference tables by enforcing their use. For each reference table (cell name, layer name, property names, …), when strict mode is defined, then all references made to an object must be made by reference number. Also, the specification guarantees that all declarations that associate a reference number with a name must be made in a contiguous table, which offset is provided in either the START or END record.

The goal of strict mode is to allow fast random access in an OASISĀ Ā® file. A reader that takes advantage of it can start working on a file before having read it all, and can access some portions of the file directly, without having to read it sequentially. However, strict mode is optional, and, according to the specification, readers can choose not to take advantage of it, in which case they are not required to raise errors related to strict mode violation. This leads to situations where a file can appear valid to one reader, and invalid to another. More problematic are some databases we have seen, where the same reference number was associated to different names, at different places in the file. A reader taking advantage of strict mode would only see one declaration and continue working, although the file was ambiguous and invalid.

3) C-Blocks

OASIS CBLOCK records provide a way to embed compressed data within an OASISĀ Ā® file. Contrary to using an external tool on the whole file, they allow both compression and efficient access. As of today, the only compression method supported is the lossless DEFLATE format (also found in zip). Since design files are getting larger and now routinely weight tens of Gigabytes, OASISĀ Ā® should probably consider including newer and more efficient compression algorithms.

4) Checksum

OASISĀ Ā® allows three different validation schemes: no validation, a CRC checksum or a byte sum. If selected, the validation writes 32 bits in END record of the file. As its name implies, the goal of the validation scheme is to detect errors or corruptions (due to file system conversion, transfers, etc.). The byte sum is a simple sum of all the bytes contained in the file, truncated to 32 bits. It is easy to implement but, as the OASISĀ Ā® specification itself admits, itĀ is not very efficient for detecting errors. The CRC checksum is a common 32 bits polynomial Cyclic Redundancy Check. It is the only validation scheme that really detects error, but it comes at the cost of being byte-order dependent : the file must be written and read sequentially.
Unlike MD5 or the now recommended SHA cryptographic functions, it is worth noting that none of the OASISĀ Ā® validation schemes offer real ā€œtamper-proofā€ checksums. It is really easy to create two OASISĀ Ā® files with the same checksums, but different content.
Sadly, it seems that many tools turn off validation by default. Users then have to resort to external tools for error detection (such as Unix cksum).

C. Advantages and weakness

1) Unlimited precision

The OASISĀ Ā® specification defines a format for integers that support unlimited precision : numbers can be arbitrarily long.
To fully implement unlimited precision, OASISĀ Ā® compliant software should use specialized math libraries that are able to perform operations of arbitrary precision. However, the cost of these algorithms becomes an issue for compute intensive code running on big databases.
In practice, many implementations choose to use the computerā€™s native precision (usually 64 bits nowadays). To prevent divergence in interpretation, the OASISĀ Ā® format should probably evolve to restrain the precision of integers to 64 bits. A precision of 32 bits was definitively not enough, but overpassing 64 bits may not be useful. As an example, the cube size of an elementary silicon crystal cell is 0.543nm. A value of 64 bits allows to give the exact coordinate with this precision, on a wafer of more than… 10000km, almost earth diameter !
For floating point numbers, OASISĀ Ā® specifies 8 different formats. Some can express exact mathematical values. It is OASISĀ Ā®, even though a computer cannot use it natively. For practical purposes, it seems that OASISĀ Ā® could use only two of these formats: the ones based on IEEE 754 floating point representation, already used by all software and implemented natively by most processors.

2) Choosing a description methodology

A big advantage of OASISĀ Ā® is that there is a lot of choice. 8 formats to choose from when expressing a floating point value, 11 repetition types for PLACEMENT records, reference by name or by number for cells, text, properties, etc. Most of the time, the OASISĀ Ā® specification does not impose or even recommend any of the different options. In the end, all this freedom becomes a problem, and most tools stick to a small subset that they use all the time. Our recommendation would be to use the following subset of OASISĀ Ā®, which has proven to be the most robust in our experience :

  • Use strict mode whenever possible, and make all references by reference number (and not by name).
  • Use CBlocks rather than compressing the whole file.
  • Use CRC checksum to detect errors.
  • Never write numbers that cannot be represented as 64 bits integers.
  • Use type 6 or 7 for floating point numbers (IEEE 754 single or double precision).
  • When in doubt, use type 8 repetitions (for arrays), or type 10 (for random repetitions): these are the most generic.
  • Try to use rotations which are multiples of 90 degrees. A rotation of 12.34 degree does not make much sense in a real mask !

To further optimize the OASISĀ Ā® file, one can take advantage of modal variables. According to the specification, these modal variables implicitly store the state of the preceding element. For example, they are used to instantiate a polygon in the same layer as the polygon which was previously instantiated. When instantiating one thousand polygons in the same layer, we omit repeating one thousand times the layer number. At the scale of a complete database, this can lead to real gains in file size. In order to fully take advantage of modal variables, the OASISĀ Ā® writer should sort the elements as efficiently as possible to form groups that share common parameters.

III. OASIS.MASK: THE MISSING LINK

A. Presentation

On one hand, OASISĀ Ā® has been a big step forward for the physical design description compared to GDSII, but on the other hand, photomasks description is still using an old format called MEBES. This format was created in the early seventies by ETEC, and has been updated a few times since the beginning, starting from Mode-1 to current Mode-5 version. The original Mode-1 format was definitively not suitable for describing larges chips with a precision of 1nm or even less.
Most of the foundries and maskshops worldwide are using MEBES files, but some other formats like JEOL, VSB, MIC, HL, DXF or Gerber are also available. These formats are proprietary and are not ā€œofficialā€ maintained standards. So, as for GDSII replacement, the basic idea was to set up a new standard for mask layout description. Mask layout and design layout are luckily not so far from each others, and the other great idea was to use the same format: OASISĀ Ā®. But, even if the final physical representation should be the same, photomasks description have some particularities and a straight forward usage of OASISĀ Ā® for this type of application was not really possible. So, SEMI P44, also known as OASIS.MASK was born [7].
It is important to notice that OASIS.MASK is not really a new format. It is a formal subset of OASISĀ Ā®, and as such, an OASIS.MASK file can be read by any standard OASISĀ Ā® parser. It mostly adds some constraints compared to the initial format, but also provides several extensions to simplify its manipulation by mask data preparation tools.

1) Principle

While a design database is a hierarchical description based on the functions used in a chip, an OASIS.MASK file is a description of the layout based on the topology. It still keeps a hierarchy, but limits it to 3 levels. The first level is the top cell, the second level is made of so called localization areas and the third and last level is madeĀ of small cells named common cells. Localization areas do not have any relationship with the original functional hierarchy. They are just rectangular areas at a given place of the full layout. OASIS.MASK may then be seen as a flattened view of the chip just divided in windows.
This is more or less what is done in a MEBES file in which the original hierarchy has completely vanished. In such formats as MEBES, the hierarchy is purely topological: the first level is made of columns (the segments) and the second level is made of rows (the stripes). But as all the stripes and the segments are different, it is not possible to share any cell declaration, so the file is a fully flat description and is thus very big, nowadays sometimes exceeding a terabyte.
In all large chips, there is an intensive usage of library cells. All basic gates or memory points are called millions of times but only need to be described once. This has been taken into account in OASIS.MASK in which only the upper level cells of the functional hierarchy need to be flattened. All ā€œsmallā€ cells may remain unchanged and are called from the intermediate level of the hierarchy. These small cells are called common cells. Their usage drastically reduces the final file size.
Figure 1 represents the functional hierarchy of a chip as described in a standard OASISĀ Ā® file. Figure 2 represents the same chip with the topological hierarchy in OASIS.MASK format. We can see that all small (common) repeated cells are described the same number of times in both representations, while large cells have been flattened. Flattening big functional blocks has no major impact on the final size as these cells usually appear at most a few times in the chip.

Small Library Cells

Figure 1. functional hierarchical description of a chip
Small Common Cells

Figure 2. topological hierarchical description of a chip

2) Restrictions

Being a subset of OASISĀ Ā®, OASIS.MASK introduces some restrictions on the original format. Most of them are to be expected (see 2.3.2), but some are more surprising. Although they might change in the future, here is a list of the current restrictions imposed by the specification :

  • Cell names and properties can only include ASCII letters, numbers and underscore (63 characters to choose from)
  • File names cannot be more that 64 bytes long (256 including directory), and must be composed of only these 63 characters (plus the period)
  • Hierarchy is limited to 3 levels
  • Strict mode is mandatory (all references are made by numbers, encoded as 32 bits integers)
  • Validation checksum is mandatory (but sadly, byte sum is allowed, although ineffective)
  • Names cannot be longer than 256 bytes (cell name, layer name, property name, …)
  • Coordinate values for PLACEMENT records are limited to 32 bits signed integers
  • Only repetitions O-3 (regular 2D arrays) are allowed (and sadly not the more generic type 8 and 10)
  • Magnification, mirroring or rotation are disabled
  • There can only be one layer per file
  • Layer numbers are limited to 256, and datatypes are ignored.
  • Only rectangles and trapezoids are allowed (no paths or generic polygons)
  • The bounding box for all cells must be described (using OASISĀ Ā® S_BOUNDING_BOX property)
  • A cell cannot be larger that 1 square millimeter (except Top Cell)
  • The file offset of all cells must be given (using the S_CELL_OFSET property, encoded as a 64 bits integer)

As stated in the OASIS.MASK specification, these constraints may be relaxed in the future. For example, given the pace at which mask complexity evolves, we wouldnā€™t be surprised to see 32 bits integers get promoted to 64 bits in the years to come.

3) Extensions

OASIS.MASK extensions are implemented as plain OASISĀ Ā® properties, or remain compatible with the regular OASISĀ Ā® format. To make them easily identifiable, all OASIS.MASK related properties are prefixed with the SEMI standardā€™s number : P44.
As already discussed, the major improvement of OASIS.MASK over OASISĀ Ā® is the introduction of localization areas. They are implemented with the P44_LOCALIZATION and P44_LOCALIZATION_AREA properties.
As its name implies, the P44_COMMON_CELL property is used to declare common cells. The P44_GEOMETRY_OFFSET_AVAILABLE and P44_GEOMETRY_OFFSET properties allow fast access to the geometry records of every cells (one can directly jump to the declaration of rectangles and trapezoids, skipping all PLACEMENT records). The P44_TOP_CELL_NUMBER property declares the reference number of the top cell. Since the P44_LOCALIZATION property also contains the top cell record offset in the file, finding the top cell in an OASIS.MASK files becomes very easy (and very fast), contrary to a generic OASISĀ Ā® file where in the worst case the entire file must be read and analyzed before being able to compute the top cell.
Other properties are also defined in the OASIS.MASK specification (such as P44_FILE_SIZE, P44_CHIP_WINDOW, P44_BOUNDING_BOX_MAX, …). Most of these properties are mandatory and, when correctly used, they drastically speed up file access and topological extraction of mask areas.

B. Applications

1) Design

In almost all design flows, the designer runs a final Design Rule Check and a final LVS (Layout vs. Schematic) on his database before sending it for mask making. This mandatory step is considered as fully reliable. But, unfortunately, it appears that some types of description are subject to interpretation. We have identified a couple of configurations for which the result may vary depending on the tool. We canā€™t say that one tool is better than another, we can just observe that their interpretations are different for things which are not fully specified in the standard. A typical example is a path with a segment smaller than the width. See figure 3.

Path
Figure 3. how should the upper right corner of the path be filled ?

The good news is that such issues are much less frequent in OASISĀ Ā®, when compared to the former GDSII standard.

But some ambiguities still remain, and a database certified as correct by a DRC, may lead to an error on the silicon because the mask data preparation tool and the layout tool have different interpretations for such corner cases.
It is thus of utmost importance to perform the verification at the last possible step in the flow and on a format without any ambiguity. OASIS.MASK is an OASISĀ Ā® subset, so any tool able to read OASISĀ Ā® files is able to read an OASIS.MASK database. This means that a design rule check can be executed on an OASIS.MASK file.

The OASIS.MASK file will be used for post layout data processing and it will be the result of a conversion from the designer database. It is important to be able to run a verification on the converted file. Additionally, there is no risk of misinterpretation since all the geometries contained in an OASIS.MASK file are simple trapezoids.

But at the current state of OASIS.MASK specification, we are facing different problems. The first one is related to layers : an OASIS.MASK file should not contain more than one layer. This makes the full verification much more complex. It is possible to verify the design rules for each layer, one after the other, but to check the inter layer rules, different layers must be seen at the same time. To perform the DRC, we must load multiple OASIS.MASK files at the same time, each of them containing a single layer. Additionally, data types usage is not clear: they are widely used in OASISĀ Ā® files, but are notified as ignored in OASIS.MASK. This should only involves the mask writing equipment, and we may consider that, as present in the file, the data types may still be usable by other applications. These limitations and differences of layers and data types between both formats, imply that we canā€™t use the same DRC deck to verify the design database and its converted version in OASIS.MASK format.

In practice there are also different lists of layers/datatypes: CAD layers and datatypes used by designers, and mask layers used for mask making and wafer processing. There is of course a relationship between both and mask layers can always be deduced from CAD layers and datatypes, while the opposite is not necessarily true. Designers do not draw all the layers and datatypes. Some process layers are computed from others by boolean operation (AND, OR, XOR, NOT). Design engineers also use some recognition layers or datatypes which are not processed, but still defined to simplify device identification. The DRC or LVS decks may need to take these differences into account in order to work on the OASIS.MASK file.

Adding more complexity by restricting files to a single layer and no datatypes seems like an unnecessary burden, especially if we consider that allowing multiple layers and datatypes per file comes at almost no cost in terms of implementation.
The Second issue is related to the hierarchy. As mentioned before, a design database has most of the time a functional hierarchy. This hierarchy should follow the schematic hierarchy and the layout vs. schematic verification is performed hierarchically. Each cell in the schematic should match a cell in the layout, and the interconnections between them should match the connections drawn at a higher level of the hierarchy. Working on the hierarchy speeds up the process, and makes it easier to identify and localize errors.

In an OASIS.MASK file, the functional hierarchy is replaced by a topological hierarchy, which makes it completely different from the schematic. Only ā€œsmallā€ cells may remain. This means that a hierarchical LVS will be able to identify all gates and library cells, and have them matching schematic, but all the interconnections at a higher level will be processed flat.
This is of course possible, but it will lead to a dramatic increase in processing time.

2) Post layout

With advanced process nodes, layout requires some post processing to meet manufacturing constraints. The two major operations to be performed are ā€œdummificationā€ and OPC (Optical Proximity Correction). Dummification consists in inserting small geometries in empty areas of some layers in order to guarantee an homogenous density across the whole chip. The goal is to obtain an optimal flatness during chemo-mechanical planarization steps (See [1]). Usually the inserted ā€œdummiesā€ are simple polygons that can be described by a single or at most a few trapezoids. The insertion is made flat at the top level of the design as it depends on the global topology of the layout. So dummification can easily be performed on an OASIS.MASK file.

Additionally, the insertion of dummy geometries is based on a density analysis of the layer. This analysis is made on a window basis and requires to have a flat view of the top level of the layout. When using a regular OASISĀ Ā® file, flattening a full chip requires a huge amount of memory, although only one small part of the drawing (the window) is processed at a time. The OASIS.MASK format, which is topological by design, is definitively more convenient for such an operation. The physical representation of the chip has already been flattened and split in small areas. Computing the density on pre-defined windows will require to load only a few localization areas. It will then be very easy to insert the expected trapezoids in these areas to reach the expected density. This will be performed locally without any impact neither in others areas nor in common cells. This also means that the process can easily be parallelized.

Unfortunately, one of the restriction of OASIS.MASK compared to OASISĀ Ā® leads to a big degradation in terms of file size. In order to have a better distribution of parasitics introduced by all the dummy geometries, they are often placed in a non-orthogonal way as explained in [4], see fig 4 . A full chip may contain millions of dummy geometries and it is important to have them instantiated in arrays instead of having millions of individual instantiations.

In GDSII, it was only possible to have orthogonal arrays, and the apparition of such dummies in the designs has lead to a dramatic increase of the file size. One of the interesting features of OASISĀ Ā® was the possibility to describe non-orthogonal arrays of cells or geometries. This is known as type 8 repetition. Thanks to this feature, it has been possible to reduce file size. But OASIS.MASK does not allow repetition of other types than 0-3, i.e. a regular orthogonal arrays. This has a very negative impact on the output file size.

Example requiring Type 8 Repetition

Figure 4. example of non orthogonal dummies requiring type 8 repetitions

The second critical operation to be done on final design layout is OPC. This consists in slightly modifying all existing geometries to compensate light diffraction and interferenceĀ phenomena through the photomask. This is also a time consuming operation that requires a flat view of the layout. As their name implies, these optical corrections are only related to proximity effects. So a window based analysis is well adapted to this processing and OASIS.MASK format meets all requirements.

3) Mask making

All geometries in an OASIS.MASK are split in basic trapezoids. This means that the fracturing step is mostly done, even if some work might still remain, like boolean operations, clipping or sizing (bias adjustment). It is also important to point out that OASIS.MASK doesnā€™t allow any rotation. Any cell with a rotation should be flattened and all its geometries converted to basic trapezoids which type will not change. Performing computation on trapezoids is quite easy and very fast and always results in simple shapes easily fractured in trapezoids. For example, clipping a trapezoid by a rectangle will never result in more than one convex polygon. See figure 5. In the same way, applying a sizing on a trapezoid will always result in a trapezoid of the same type.

Trapezoid
Figure 5. clipping a trapezoid with a rectangular area will always generate a convex polygon that can be fractured in never more than 3 trapezoids

4) Display

As stated in [2], OASIS.MASK is well suited for efficient reading, especially for a viewer that usually displays a small area of the whole mask. To allow for fast random access based on the topology (e.g. : display the top left corner of the mask), the OASIS.MASK file must use localization areas efficiently. For example, in Figure 6, only the localization area matrix will permit fast access.

When building the matrix, there is a tradeoff between access time and file size : small localization areas will allow for faster access, but will also increase file size. On the contrary, larger localization areas slow down read access but keep the file smaller. The extreme case is to use only one localization area : we are back to a regular OASISĀ Ā® file, very compact butĀ without topological information.

Another thing to take into account is the amount of cells that will be put in common between all the localization areas. Putting many cells in common will reduce the file size, but will also increase access time. Note that if file size becomes an issue, one can also use CBLOCKs (one per localization area) to compress data.

Also note that localization areas are not declared in a regular array, but just as a list of statements in the top cell record. Hence they do not have to share common dimensions. For some files, it can thus be more efficient to build an ā€œadaptiveā€ matrix. For example, the localization area width and height can vary based on the cell density of the mask.
All these parameters need to be taken into account in the OASIS.MASK writer to strike a good balance between file size and random-access speed.

localization-area usage
Figure 6. different localization-area usage

IV. THE EVOLUTION

We have seen that OASIS.MASK is pretty well suited for all the steps of a design flow. However, in order to be more efficient for validation, some simple modifications are required. This chapter points out some suggestions to improve OASIS.MASK usability.

A. Format

1) Layers and datatypes

As previously mentioned, the limitation to one single layer in an OASIS.MASK file and the removal of datatypes are definitively too restrictive. This prevents the DRC from running on a single file and producing 100% reliable checks.

The OASIS.MASK format offers the advantage of removing any risk of misinterpretation of the description thanks to the exclusive usage of trapezoids. So, we suggest to drop this constraint in future versions of OASIS.MASK. No change to the format is required as a different layer number may be specified for each trapezoid. Datatypes are also specified in the specification but flagged as ā€œIgnoredā€. Supporting several layers and datatypes should come at almost no implementation cost. For examples, our tools can currently generate files fully compliant with SemiP44 specification, except for this one limitation in the specification that requires to have only one layer per file and to ignore datatypes.
Of course, limiting layers and datatypes to a finite number is necessary. But restricting layer and datatype number to 256, as in the current version of the OASIS.MASK specification, is an acceptable limitation.

2) Repetition

OASIS.MASK has restricted the types of repetition to only standard orthogonal arrays. Neither type 8 repetitions for regular non orthogonal arrays, nor type 10 for random repetition can be used anymore. This has a dramatic impact on the file size and on the processing time of the writer. Usage of type 8 repetitions really improves dummy cells instantiation as described in III-B2. With type 10 repetitions, the repeated cell or geometry is described only once, and followed by the number of instances and the list of displacement required to go from one instance to the next one. Knowing that the representation of the displacement itself is optimized in OASISĀ Ā®, it is possible to efficiently describe any array that has some ā€œirregularitiesā€.

Letā€™s consider a distribution of geometries as described in figure 7. If we want to take advantage of the only available repetition type in OASIS.MASK, i.e. regular arrays, we have to split the irregular matrix into a set of regular arrays. This computation involves an algorithm of at least O(n2) complexity. In practice, the processing cost becomes prohibitive when dealing with a large number of instances, and we have to stop trying to use repetitions. This results in a separate instantiation of each cell or geometry and leads to a noticeable increase of the file size. In standard OASISĀ Ā® format, using a type 10 repetition will allow to describe such a matrix without any complex computation.
Searching Arrays
Figure 7. searching for regular arrays in a non regular matrix

3) Transformations

OASIS.MASKS does not allow any geometrical transformation: rotations, symmetries and magnifications are forbidden. It is true that applying arbitrary magnification factors and doing non orthogonal rotations may lead to rounding issues, and thus to differences in the final results produced by different tools. So, it make sense to disallow such cases, especially if we consider that they almost never appear in chips layout.

But rotations of multiple of 90 degrees are also forbidden. In this case, however, there is no risk of misinterpretation or rounding error. Having to flatten all common cells which has such a rotation has a real impact on the file size.

In practice, we will always find the 4 possible orientations for each library cell in a complex design. This means that we will have to individually describe each common cell with its 4Ā orientations, hence usually multiplying by 4 the common cells record size in the output file.

Remember that one of the benefits of OASIS.MASK over MEBES was to be able to keep all the small cells of a design ā€œas isā€ in a common record. But we lose 75% of this benefit by disallowing orthogonal rotation.

If we also take into account the possibility to apply an horizontal or vertical mirror on the cells, we again multiply by 4 the number of common cells to be described. If we consider that applying a rotation to a trapezoid will change its type, it is true that allowing rotations will increase the fileā€™s complexity. But a simple conversion matrix can easily fix this issue. If we focus on the types of trapezoids shown in figure 8. We can define the following conversion table.

Trapezoid types
Figure 8. some types of trapezoids

B. Utilization

1) Unified format

Using a single format for layout description during the whole design flow would have a lot of benefits. Each conversion done without 100% reliable checks is a potential risk. But this single format should not bring more constraints than benefits. Using standard OASISĀ Ā® at the beginning of the flow is really valuable as the designer can deal with a functional hierarchy, but as soon as the functional design by itself is completed, and the project enters in a pure physical design phase, it may be a good solution to switch to OASIS.MASK. This is a smooth conversion since this format is still compatible with current tools. The goal is to have a format that will not need any further conversion, because conversions are most of the time performed without any validation.

2) Verification

As discussed before, OASIS.MASK usage for DRC is quite straight forward. The only critical points with the current restrictions is the limitation of one layer per file and the removal of datatypes. Without these restrictions, OASIS.MASK represents the most reliable way to validate the final design layout, as there is no risk of misinterpretation of any geometry.

In the same way, a LVS could be executed on a multi-layer OASIS.MASK file, but without any additional information, run time will dramatically increase and exploiting results will be much more difficult. It may thus be useful to add some information to the file. This information should come from the original hierarchical description of the chip which more or less matches the schematic hierarchy.

For example, it may be possible to add some dedicated properties to each instance of common cells. This property may give the information about the original hierarchy, i.e. the branch to which the library cell was connected.

This feature would help the designer localize the origin of errors. On the other hand we also need to help the LVS tool, in order to speed up the process. This could be achieved by placing labels on some geometries. Usually, the extraction module of a LVS is able to identify text labels and use them to name and recognize some nets. Most of the time, these labels are placed in some of the subcells of the design. For example, the different bits of an adder will be flagged B[0]… B[n]. LVS will then easily match the labeled nets with the corresponding schematic. In OASIS.MASK, the hierarchy is lost and we canā€™t keep all these labels in their original form, as we may have many different adders in the design. Having multiple B[0].. B[n] labels at top level of the design will not help and will be quite confusing. But, during the flattening step when converting the original OASISĀ Ā® file to OASIS.MASK, it is possible to modify the labels by adding a prefix corresponding to the hierarchy. By doing that, bit 0 of the adder named ADD_3 used in the Arithmetic and logic Unit named ALU, may become ALU.ADD_3.B[0]. This will guarantee the unicity of each label and will greatly help the LVS to find the correspondence between layout and schematic.

Of course, this may require some adaptations in the LVS software itself but it would allow to check a database at the real end of the flow, thus minimizing errors.

3) MALY

MEBES is a standard format for mask writing but it describes only one device. A mask is made of multiple devices: chips, process control modules, alignment marks, etc… The full description of a mask is an assembly of multiple MEBES (or equivalent) files, known as a JobDeck.

The MEBES JobDeck is a proprietary format and not an official standard, which has tried to evolve over the years to catch up with the ever increasing complexity of circuits layouts. The result is a format that is quite hard to work with.

Switching from MEBES to OASIS.MASK seemed like a good opportunity to define a new standard to describe photomasks layout. This new standard is SEMI P45, also called MALY [5]. MALY is simple description format which specifies how to place the different OASIS.MASK files on a mask. Each file is called at a given coordinate with geometrical transformations: rotation and symmetry.

In practice, MALY adds a level of hierarchy to OASIS.MASK files to describe a full photomask. So using MALY could be a way to merge different files and to work simultaneously with multiple layers, since an OASIS.MASK file should contain one single layer. But MALY is a different format and a DRC or LVS which is able to read OASISĀ Ā® files will not be able to read a MALY file. Hopefully, standard EDA tools will evolve to support MALY in the years to come.

V. CONCLUSION

During the last few years, we have seen all the benefits of the OASISĀ Ā® format, as well as some of its weaknesses. OASISĀ Ā® is a complex format that provides many options, and it seems like everybody uses it in a different, sometimes suboptimal, way.

OASIS.MASK fixes some of these issues while at the same time offering a topological view of the database, which is required by some tools in the layout flow. And its compatibility with OASISĀ Ā® allows for a smooth transition between the design world and the process world. As such, OASIS.MASK is an important step towards standardizing the various file formats used in microelectronics.

OASIS.MASK still has some shortcomings, and we have pointed out some of the limitations which today prevent integrating this format in some steps of the flow. But OASIS.MASK is still young, and, as its specification mentions, ā€œpart of restrictions on OASIS.MASK may be relaxed, and OASIS.MASK specification may be extendedā€.

So we are confident that this format will be able to evolve and become a standard used across the whole design and layout flow. Our industry has much to gain from it in terms of robustness and usability.

REFERENCES

[1] Aditya P. Karmarkar, Xiaopeng Xu, Victor Moroz, Greg Rollins, and Xiao Lin. Analysis of performance and reliability trade-off in dummy pattern design for 32-nm technology. In Proceedings of the 2009 10th International Symposium on Quality of Electronic Design, ISQED ā€™09, pages 185ā€“189, Washington, DC, USA, 2009. IEEE Computer Society.

[2] Cohen Daniel Morales Domingo, Pablo Canepa Juan. Efficient oasis.mask reader. In Proc. SPIE 7748, Photomask and Next-Generation Lithography Mask Technology XVII. SPIE, 2010.

[3] P. Morey. Going from gdsii to oasis. EEtimes, December 2008.

[4] Philippe Morey-Chaisemartin. Layout finishing of a 28nm, 3 billions transistors, multi-core processor. Photomask Japan, 2013.

[5] SEMI International Standards. Semi p45-0211 specification for job deck data format for mask tools.

[6] SEMIInternationalStandards.Semip39-0308-oasis(tm)-openartwork system interchange standard, 2008.

[7] SEMI International Standards. Semi p44-0211 – specification for open artwork system interchange standard (oasisĀ Ā®) specific to mask tools, 2010.

 

This site is registered on wpml.org as a development site.