Using Ada for Semiconductor Assembly Equipment How ITEC uses Ada95 - - PowerPoint PPT Presentation

using ada for semiconductor assembly equipment
SMART_READER_LITE
LIVE PREVIEW

Using Ada for Semiconductor Assembly Equipment How ITEC uses Ada95 - - PowerPoint PPT Presentation

Philips Semiconductors Using Ada for Semiconductor Assembly Equipment How ITEC uses Ada95 in semiconductor PS - XXX.XX.XX-1 assembly equipment Philips Semiconductors ITEC within Philips Philips Semiconductors Discrete 3 Assembly Wafer


slide-1
SLIDE 1

PS - XXX.XX.XX-1

Philips Semiconductors

Using Ada for Semiconductor Assembly Equipment

How ITEC uses Ada95 in semiconductor assembly equipment

slide-2
SLIDE 2

Philips Semiconductors

ITEC within Philips

Semiconductors Discrete Wafer fabs Philips ITEC 3 Assembly factories

slide-3
SLIDE 3

Philips Semiconductors

= Discretes = ICs Hong Kong Kaohsiung Manila Bangkok Seremban Stadskanaal Calamba

  • 98/03

Assembly facilities, our customers

GS- 23

slide-4
SLIDE 4

Philips Semiconductors

BIM line setup

BIM: Break through In Manufacturing

Endless leadframe Adat Mould Plate Test, mark, tape Phicom

slide-5
SLIDE 5

Philips Semiconductors

ITEC equipment

  • Adat: Die attach machine, takes die from wafer and solders it on

leadframe

  • Phicom: Wire bond machine, bonds gold and aluminum wires from

die to leadframe

  • Multiplunger: Mould products in plastic
  • Parset: Tests devices to meet electrical specification
  • Quad: Machine to cut and bend leads, laser mark, test and tape

products.

slide-6
SLIDE 6

Philips Semiconductors

Started with Ada95 5 years ago

Assembly machines use RTL/2 on 68k, tester used pascal on VAXeln Converted code to Ada95 automatically Reasons to start with Ada 95:

  • Old code can be converted to Ada95 code
  • Ada95 good programing environment compared with pascal
  • GNAT available, based on gcc, lots of tools available
slide-7
SLIDE 7

Philips Semiconductors

Platform Windows NT

Why Windows NT:

  • Advanced system services
  • Cheap, runs on cheap hardware
  • Integrates well in office environment
  • Realtime properties good enough
  • Advanced GUI
slide-8
SLIDE 8

Philips Semiconductors

Selection of Ada95

+++ positive

  • Conversion from rtl/2, pascal possible
  • Very good from engineering point of view
  • Finally good compiler (GNAT)
  • -- negative
  • Nobody uses it (in Philips), everybody does C
  • One must know C anyway
slide-9
SLIDE 9

Philips Semiconductors

Typical Equipment control

  • High end motion controllers using fast DSP’s (9kHz cycle).
  • Vision function: using frame grabber to get the image, then process

it on the pc

  • Machine control multithreaded (typical 30-50 threads)
  • Integration with Shop Floor Control system
  • Support of many variants
  • Response time to external events <1ms
  • Setup as client/server

– Server performs the control – Client interacts with user

slide-10
SLIDE 10

Philips Semiconductors

Main architecture setup

NT kernel Machine control Client kernel mode WIN32 API user mode device driver device driver device driver

normal priority tcp/ip used for communication Realtime priority

slide-11
SLIDE 11

Philips Semiconductors

Interface with hardware & interrupts

Wrote special device driver for NT

  • Allows user mode program to access physical memory
  • Allows synchronization with interrupts
  • User process can execute routine in kernel mode

Response times: Interrupt to thread

  • average 40 microsecond
  • maximum 1 millisecond
slide-12
SLIDE 12

Philips Semiconductors

GUI clients

  • Visual ITEC (Build with CLAW)
  • Scope (build with CLAW)
  • Curve tracer (build with gnatcom, gwindows)
slide-13
SLIDE 13

Philips Semiconductors

Visual ITEC used as GUI interface (1)

In design mode:

Allows to define screen layout. Select objects from application into screen. Can make buttons that give commands to applications. Buttons can also invoke other screens.

In execute mode:

User makes use of screens defined.

Advantage: Application developer can focus on core of application.

slide-14
SLIDE 14

Philips Semiconductors

Visual ITEC used as GUI interface (2)

Object types for Visual itec:

  • Text objects
  • Chart objects
  • Life video objects
  • Wafermap objects (gives view of wafer with die processed)

Visual itec characteristics:

  • Inquires server periodically to get its information
  • Can run anywhere because of tcp/ip connection
  • Can combine information from different servers in one form
slide-15
SLIDE 15

Philips Semiconductors

Visual ITEC used as GUI interface (3)

slide-16
SLIDE 16

Philips Semiconductors

Scope debugging tool

Scope architecture

  • In our application we use circular buffers to store events with there
  • time. Such an object is called a probe.
  • Application can put time stamps with boolean in them
  • Application can put floating point value with time in them.
  • To get timestamps, we use rdtsc of pentium
  • Setting a timestamp is very fast << 1us
  • Application has low priority server that allows client access to data
  • Client displays data graphically
slide-17
SLIDE 17

Philips Semiconductors

slide-18
SLIDE 18

Philips Semiconductors

Conclusions

  • Ada95 is very good programming language
  • Ada95 tasking features makes machine control much simpler
  • Ada95 gives stable applications because of its build in protection

mechanisms

  • Ada95 made for proper software engineering
  • Ada specs gives developer good idea of package content. When

properly setup increases reuse of packages.

  • In the beginning NT support was just enough. Getting better each

year: stable gnat compiler, gnatcom, gwindows