Lasers on Chip

Four lessons of this module have quietly assumed that coherent light simply arrives. Time to face the platform's original sin: silicon cannot lase. The material that guides, splits, phase-shifts, modulates and even detects light is congenitally incapable of producing it — and no amount of engineering cleverness has repealed the verdict, because it is written into silicon's band structure. Every silicon photonic chip in the world therefore begins with a diplomatic problem: the gain must come from somewhere else — a family of III-V semiconductors grown on a different planet, fab-wise — and getting that foreign light into a silicon waveguide cheaply, efficiently and by the million is one of the defining engineering battles of the field. This lesson is about the physics of the verdict, the laser physics that the III-Vs supply, and the three strategies for marrying the two.

The indirect-gap verdict

Recall from band theory that electrons in a crystal carry a crystal momentum \hbar k, and both energy and momentum must balance in any transition. A photon carries plenty of energy but essentially zero crystal momentum (its k is a thousandth of the Brillouin zone's width). In a direct-gap material like GaAs or InP, the conduction-band minimum sits at the same k as the valence-band maximum, so an electron can fall straight down and pay out its energy as a photon: radiative lifetimes are nanoseconds. In silicon the conduction minimum is displaced most of the way to the zone boundary. A recombining electron must shed a large chunk of crystal momentum that the photon cannot carry, so a phonon must participate — a three-body event whose rarity (a second-order process, in the language of Fermi's golden rule) stretches silicon's radiative lifetime to milliseconds. In a real, impure, carrier-crowded crystal, non-radiative channels (defects, Auger recombination) and free-carrier absorption recycle the energy into heat in microseconds or less. The radiative path loses the race by six orders of magnitude: pump silicon as hard as you like, it glows feebly and lases never.

Marrying III-V gain to silicon

The gain media that do work — InP- and GaAs-family quantum wells — are grown on their own expensive, small-diameter wafers in their own fabs. Three strategies bring their light to silicon, in ascending order of intimacy:

Whichever way the gain arrives, single-wavelength operation comes from a DFB (distributed feedback) structure: a grating etched along the cavity reflects only at the Bragg wavelength \lambda_B = 2\, n_{\text{eff}}\, \Lambda, so of all the modes the cavity could support, exactly one is fed back and wins. Worked number: for \lambda_B = 1550\ \mathrm{nm} and n_{\text{eff}} = 3.2, the grating pitch is \Lambda = 1550/(2 \times 3.2) \approx 242\ \mathrm{nm} — comfortably printable, and the reason WDM systems can trust each laser to hold its channel.

The wall-plug ledger

For computing, the laser is an overhead — a standing power bill paid before a single bit moves — so its wall-plug efficiency (WPE), optical watts out per electrical watts in, haunts every system-level energy claim in this course:

\eta_{\text{wp}} \;=\; \frac{P_{\text{opt}}}{I \cdot V}.

A typical integrated DFB emitting 10 mW from 50 mA at 1.5 V manages \eta_{\text{wp}} = 10/(50 \times 1.5) \approx 13\%; the state of the art reaches 20–30%, and the balance leaves as heat on the chip, right next to temperature-twitchy rings. Two structural reasons the number is stubborn: below the threshold current the cavity's gain has not yet overcome its loss, so the first tens of mA buy no coherent light at all; and above threshold each photon costs the junction voltage while returning only the photon energy. Run the ledger:

// A small integrated DFB laser function laser(I_mA: number, Ith_mA: number, slope_mWperMA: number, V: number) { const Pout = I_mA > Ith_mA ? slope_mWperMA * (I_mA - Ith_mA) : 0; const Pin = I_mA * V; // mW of electrical power const wpe = Pin > 0 ? (100 * Pout) / Pin : 0; console.log(I_mA + " mA -> " + Pout.toFixed(1) + " mW out, WPE " + wpe.toFixed(1) + " %"); } for (const I of [10, 20, 40, 60, 80]) laser(I, 15, 0.25, 1.5); // Bragg pitch for a DFB at 1550 nm const pitch = 1550 / (2 * 3.2); console.log("DFB grating pitch: " + pitch.toFixed(0) + " nm"); // System view: a 1 W-optical accelerator at 15 % WPE console.log("1 W of light costs " + (1 / 0.15).toFixed(1) + " W at the wall");

Note the shape of the output: nothing, nothing, then a straight line — the threshold behaviour. And note the last line: at 15% WPE, every optical watt a photonic accelerator "computes with" costs nearly seven electrical watts before the electronics have drawn a thing. Wall-plug efficiency is where photonic-computing energy claims go to be audited.

In 1960 the race to build the first laser had a heavy favourite: Bell Labs, plus half of academia, pursuing gas discharges and caesium vapour. The winner was Theodore Maiman at Hughes Research — working with one assistant and a budget of about $50,000, using a material the favourites had publicly written off: pink ruby, wrapped in a spiral photographer's flashlamp, the whole gain medium the size of a fingertip. On 16 May 1960 it produced the first coherent light humans had ever made. The victory lap was rocky — Physical Review Letters rejected his paper (it ran as 300 words in Nature, later called the most important physics paper per word of the century), and the laser was mocked as "a solution looking for a problem". Sixty years on, the solution's problems include every DFB in every datacenter — and the pumping scheme in Maiman's ruby (drive atoms to a short-lived level, let them pile up in a long-lived one, lase from there) is structurally the same three-level trick inside the III-V quantum wells of this lesson.

Every few years a "silicon laser at last!" headline makes the rounds, and each is worth reading with this lesson's checklist in hand. The 2005 silicon Raman laser was real and beautiful physics — but Raman gain must be pumped by another laser, so it converts light to light and solves nothing for a computer that starts from electricity. Strained-germanium and highly-doped Ge lasers have lased electrically, but with threshold current densities orders of magnitude too hot to deploy. Quantum-dot-on-silicon lasers are genuine electrically pumped lasers on silicon wafers — but the photons still come from III-V dots; the silicon is a landlord, not a gain medium. The honest scorecard for any such claim: (1) electrically pumped? (2) continuous wave at room temperature? (3) efficient and long-lived enough to ship? As of this writing, no light-from-silicon device clears all three — which is precisely why the integration strategies of this lesson, and not a materials miracle, power the industry.

Where this goes next

One more idea completes the sourcing story: some systems need not one wavelength but dozens — WDM links and photonic accelerators consume lasers by the comb-full. A single microresonator, pumped hard enough to go nonlinear, can shatter one pump into a ruler of equally spaced wavelengths — a frequency comb, a whole WDM source in one ring, whose computing applications get their own lesson in Module 10. With light finally sourced on-chip, the module has a full parts bin: splitters, phase shifters, rings, modulators, detectors, lasers. The closing lesson asks how anyone actually builds a chip out of them — the photonic design flow, from PDK to packaged part.