ガラスコア基板の量産課題:TGV・反り・歩留まりを同じ物差しで読む

ガラスコア基板の利点を、TGV形成・反り・パネル加工・歩留まりの量産課題から日英で検証する。公式資料と再現計算を使い、試作、顧客評価、量産を混同せずに読むための判断軸を示す。

17th Sep 2026
ガラスコア基板のTGV、反り、パネル歩留まりを工程別に比較する概念図

ガラスコア基板の利点を、TGV形成・反り・パネル加工・歩留まりの量産課題から日英で検証する。公式資料と再現計算を使い、試作、顧客評価、量産を混同せずに読むための判断軸を示す。

Sponsored affiliate banner

ガラスコア基板の量産課題:TGV・反り・歩留まりを同じ物差しで読む

ガラスコア基板は「有機基板より反りにくい」と説明されることが多い。だが、量産性を決めるのは材料の平坦性だけではない。TGVの穴あけと金属化、ガラス端面の欠け、積層後の反り、パネル内の位置精度、良品面積あたりのコストが連鎖し、最後の1工程でそれまでの利点を消すこともある。

先に結論を示す。2026年9月時点で、ガラスの物性上の利点、試作基板、pilot line、公的なR&D・工場支援は確認できる。一方、複数顧客にまたがる量産歩留まり、TGV欠陥分布、修理率、良品パネル当たりコストは公開資料から確認できない。したがって、「ガラスが有望」と「量産が成立した」は分けて扱うべきだ。

実装基板全体の地図ではガラスコアをパッケージ階層に置いた。本稿はそこから一段深く、量産ボトルネックだけを扱う。銅seed形成の違いはElephantechの工程比較、基板・bonding・testの開示を追う方法はメモリ後工程バリューチェーンに接続する。

確認時点:2026年9月17日。 数値はIntel、NIST、Samsung Electro-Mechanics、Corningの公式資料に基づく。各社の性能表現は会社発表であり、横並びの第三者試験ではない。計算値は本稿の仮定によるシナリオで、製品歩留まりの推定ではない。

ガラスコア基板のTGV、反り、パネル歩留まりを工程別に比較する概念図

TL;DR:量産判断で見る4点

私には、材料名ではなく証拠の段階を揃えることが最も重要に見える。

論点現在確認できることまだ確認できないこと
反りIntelは有機材料比でpattern distortion 50%減を主張。Corningはcarrierで工程内warp最大40%減を掲示同一package構造・温度履歴での量産比較
TGVCorningは精密via付きglass、Samsungは微細channel形成とmetal fillを公式展示panel全面のvia欠陥分布、repair率、takt time
生産段階SamsungはSejong pilot lineでprototype、JV量産は2027年以降を計画複数顧客のproduction qualificationと継続出荷
公的支援NISTはAbsolics SMART Packagingへ1億ドルのR&D支援を確定支援額から逆算した売上、利益、量産歩留まり

この表の要点は、優れた材料特性、設備投資、顧客評価、量産良品率が別の指標だということだ。


Sponsored affiliate banner

なぜガラスなのか:平坦性と寸法安定性の効き方

大型packageでは、配線密度だけでなくlayer間の位置合わせが先に限界になることがある。

有機coreは温度と吸湿で寸法が動き、packageが大きくなるほど局所差がoverlay errorへ現れやすい。ガラスは高い剛性、低いwarp、調整可能なCTE、低い高周波損失を組み合わせられる。Intelはglass substrateについて、有機材料に対してpattern distortionを50%減らし、interconnect densityを最大10倍にできる可能性を示した。ただし、これはIntelの将来技術に関する主張であり、10倍の出荷量や10倍の歩留まりを意味しない。

Corningはsemiconductor glass waferでCTE 3.2〜12.4ppm/°C、100µmまでの薄型化、waferとpanel form factorを示している。ここで注意したいのは、temporary carrier glassと最終製品のglass core substrateは同じではないことだ。carrierの「warp最大40%減」を、そのままpackage coreの量産値に転記することはできない。

項目有機coreで顕在化しやすい課題glass coreの狙い新たに増える管理点
大面積化熱・吸湿による寸法変化、反り高剛性、平坦性、CTE調整脆性、edge chip、handling
微細配線layer間overlay余裕が縮小寸法安定性で微細化余地glass表面処理、密着性
垂直接続core viaの径・pitch制約TGVで短い垂直接続穴形状、metallization void
高速信号dielectric lossと長い配線glassの低損失特性via transitionのSI検証

採用案は、同じ温度履歴・同じpackage寸法で反りとoverlayを比較すること。却下案は、材料datasheetのCTEだけで完成品歩留まりを予測することだ。

CTE差を「相対変位」に直す再現計算

CTE差はppm/°Cのままだと実感しにくい。そこで100mmの長さ、220°Cの温度差を仮定し、CTE差が1、5、10ppm/°Cのときの自由熱膨張の相対変位を計算する。さらにCorningが例示するpanel面積を300mm waferの円面積と比べる。

from math import pi

DELTA_T_C = 220
LENGTH_MM = 100

for delta_cte_ppm in (1, 5, 10):
    strain = delta_cte_ppm * 1e-6 * DELTA_T_C
    relative_shift_um = strain * LENGTH_MM * 1_000
    print(delta_cte_ppm, round(strain * 100, 3), round(relative_shift_um, 1))

wafer_300_area = pi * 150**2
for width, height in ((515, 510), (600, 600)):
    panel_area = width * height
    print(f"{width}x{height}", round(panel_area / wafer_300_area, 2))
仮定したCTE差熱ひずみ100mmでの自由相対変位
1ppm/°C0.022%22µm
5ppm/°C0.110%110µm
10ppm/°C0.220%220µm

515×510mm panelのgross areaは300mm wafer円面積の約3.72倍、600×600mmなら約5.09倍になる。しかし、これは面積だけの比較だ。edge exclusion、street、欠け、via不良、再配線不良を入れていないので、良品数やコスト優位を示さない。むしろ、panelの面積利点を得るには面内均一性を同時に証明する必要がある、と読むべきだ。


Sponsored affiliate banner

TGVから良品panelまで:欠陥は直列につながる

私が最も警戒するのは、「viaが1個できた」という断面写真を「panelが量産できる」に読み替えることだ。

TGV工程は、穴形成、cleaning、表面活性化、seed形成、metal fillまたはconformal plating、平坦化、RDL接続へ続く。via底の未被覆、側壁void、銅とglassの界面剥離、thermal cycle後のcrackは、それぞれ別のfailure modeである。Samsung Electro-Mechanicsは2026年の展示でglassへの微細channel形成、metal fill、精密surface processingを紹介したが、公開資料はpanel yieldやsample sizeを示していない。

工程代表的な不良量産で必要な観測値断面写真だけで分からないこと
Glass handlingedge chip、microcrack、破損breakage率、edge exclusion、搬送停止後工程での遅延破壊
TGV形成taperばらつき、位置ずれ、残渣via径分布、位置精度、穴形成takt全面均一性
Metallizationvoid、seed discontinuity、overburdendaisy-chain抵抗分布、void率temperature cycle寿命
Build-up / RDL密着不良、overlay error、反りlayer別yield、warpage map、rework率good-panel cost
Singulation / Assemblycrack、bump open、局所反りgood-unit yield、assembly escape顧客systemでの信頼性

歩留まりは各工程の積になる。仮に5工程がすべて99%でも累積は約95.1%だが、これは説明用の算術であり、glass基板の実績ではない。各工程が独立でも一定でもないため、公開された1工程のpassを全体yieldへ変換してはいけない。

落とし穴:carrier、core、interposerを混同しない

用語の混同も大きい。carrierは加工中にwaferやpanelを支える仮固定材、core substrateは最終packageの基盤、interposerはchipとsubstrateの間に置く高密度配線層である。NISTのsubstrate programは、chipとの間にinterposerを置かず直接接続を支えるbase layerとしてsubstrateを定義している。企業資料を比較するときは、どの階層のglassかを最初に固定したい。

もう一つの落とし穴は、公的資金をcommercial tractionとみなすことだ。NISTのAbsolics向け1億ドルはSMART PackagingのR&Dとecosystem形成を支える。別に米商務省は工場向け最大7,500万ドルを確定した。これは技術・供給網の重要性を示すが、顧客の量産acceptanceや利益率を証明しない。


Sponsored affiliate banner

量産移行を判断する証拠の順序

発表を追うなら、年次計画より証拠の質を上げる出来事に注目したい。

Samsung Electro-MechanicsはSejongのpilot lineでprototypeを製造し、Sumitomo Chemical groupとのJVで2027年以降の量産開始を計画している。2026年9月のKPCA Showではglass substrateを展示した。これらは「材料研究だけ」より進んだ証拠だが、production qualification完了の証拠ではない。Intelも市場投入を2020年代後半と表現しており、具体的な顧客製品、volume、yieldは公式発表にない。

証拠段階公開例次に必要な証拠投資判断でしてはいけない推論
材料特性CTE range、低loss、flatnesslot間ばらつき、表面品質材料が良いから量産可能
Test vehicleTGV断面、電気接続、package試作sample数、failure distribution1断面からpanel yieldを推定
Pilot lineSamsung Sejongでprototypetakt、uptime、rework、good-panel yieldpilot稼働を量産売上とみなす
Customer qualificationsample promotion、評価qualification完了、仕様凍結評価開始をdesign winと呼ぶ
Volume production2027年以降の計画出荷量、継続発注、複数顧客計画年を確定売上に置換

採用案は、via分布、warpage map、良品panel yield、equipment uptime、顧客qualificationを同じ四半期表で追うこと。却下案は、展示会の「量産予定」だけで供給量や売上を置くことだ。

シナリオとウォッチリスト

現時点では、量産速度を決める変数を分離した条件付きシナリオが妥当だ。

シナリオ条件確認する一次情報見方を変える条件
Basepilotと顧客sampleが継続、量産は限定prototype更新、JV設立、qualification状況日程延期が繰り返される
Main1用途でqualificationを終え、限定volumeへ顧客用途、出荷開始、良品yieldの範囲panel欠陥やassemblyでcost優位が消える
Upside複数顧客・複数packageへ展開repeat order、capacity拡張、複数lot data1顧客・1構造へ集中する
Tail riskcrack、TGV、warpageのどれかが律速仕様変更、追加test、設備改造独立顧客で同条件の採用が確認される

結論は限定的だ。glass coreは、大型AI packageの反りと微細配線を同時に扱う有力な材料選択肢である。ただし、勝負は「glassを作れるか」ではなく、「大面積panel上でTGVとbuild-upを均一に作り、assembly後まで良品を残せるか」に移っている。次の有用な開示は、最大性能値より分布、sample数、継続lot、良品面積当たりcostだ。

関連記事


次号の記事案

  • 案1:ガラスとABFのseed形成比較 — PVD、無電解銅、銅nanoinkを、step coverage、密着、repairの同じ条件で比較する。
  • 案2:TGV量産DDテンプレート — via径分布、daisy-chain、temperature cycle、panel mapをsupplierへ確認する質問表に落とす。
  • 案3:glass substrate設備・材料watchlist — laser drilling、metrology、plating、handlingの各工程で、受注とacceptanceを重複なく追う。

参考資料

本記事は情報提供を目的とし、特定銘柄や未上場株式の取得を推奨するものではありません。筆者が記載企業または関連企業の証券を保有する可能性があります。調査・執筆・翻訳に生成AIを利用しています。計算は明示した仮定に基づき、製品性能、量産歩留まり、投資収益を保証しません。詳細は免責事項をご確認ください。

Glass-Core Substrate Manufacturing: Comparing TGV, Warpage, and Yield on One Evidence Scale

Glass-core substrates are often summarized as “less prone to warpage than organic substrates.” That is directionally useful, but it is not a manufacturing conclusion. TGV drilling and metallization, glass-edge damage, post-lamination warpage, panel-wide overlay, and cost per good area form a serial process. A late defect can erase an earlier material advantage.

The direct answer as of September 2026 is bounded. Public sources support the material case, functional test vehicles, pilot-line prototypes, and government support for R&D and manufacturing. They do not disclose multi-customer production yield, the distribution of TGV defects, repair rates, or cost per good panel. “Glass is promising” and “volume manufacturing is qualified” remain separate claims.

The substrate landscape article places glass core at the package layer. This article goes one level deeper into its manufacturing bottlenecks. For seed formation and via coverage, see the Elephantech process comparison. For a broader view of substrates, bonding, and test evidence, see the memory back-end value chain.

Verification date: September 17, 2026. Figures come from official Intel, NIST, Samsung Electro-Mechanics, and Corning material. Company performance statements are not cross-vendor independent tests. Article calculations are scenarios based on stated assumptions, not estimates of product yield.

Conceptual process map comparing TGV, warpage, and panel yield in a glass-core substrate

TL;DR: Four Checks for a Manufacturing Claim

In my view, the most useful discipline is to align the maturity of the evidence before comparing materials or vendors.

IssueWhat is currently visibleWhat remains undisclosed
WarpageIntel claims 50% less pattern distortion than organic material; Corning advertises up to 40% lower in-process warp for carriersMatched production comparison using the same package structure and thermal history
TGVCorning offers precision-via glass; Samsung has shown fine channels, metal fill, and precision surface processingPanel-wide via defect distribution, repair rate, and takt time
Manufacturing stageSamsung makes prototypes on its Sejong pilot line and plans JV production after 2027Multi-customer production qualification and recurring shipments
Public supportNIST finalized a $100 million R&D award for Absolics’ SMART Packaging programRevenue, profit, or production yield inferred from the award

The key distinction is that material capability, capital deployment, customer evaluation, and production yield are different metrics.


Sponsored affiliate banner

Why Glass: How Flatness and Dimensional Stability Matter

For large packages, layer-to-layer alignment can become a constraint before nominal routing density does.

Organic cores change dimensions with temperature and moisture. As a package grows, local movement has more room to become overlay error. Glass combines stiffness, low warpage, tunable coefficient of thermal expansion, and low high-frequency electrical loss. Intel states that its glass-substrate technology can provide 50% less pattern distortion and potentially 10 times the interconnect density of organic material. Those are Intel’s technology claims; they do not mean ten times the shipment volume or ten times the production yield.

Corning lists semiconductor glass compositions spanning 3.2–12.4ppm/°C, thickness down to 100µm, and both wafer and panel formats. A critical boundary is often missed: temporary carrier glass is not the same product as the glass core left inside a finished package. Corning’s statement of up to 40% lower in-process warp for a carrier cannot be copied into a package-core yield model.

DimensionOrganic-core pressure pointGlass-core objectiveAdditional control point
Large areaThermal and moisture movement, warpageStiffness, flatness, tunable CTEBrittleness, edge chips, handling
Fine routingShrinking layer-to-layer overlay marginMore stable fine-feature platformSurface treatment and adhesion
Vertical connectionCore-via diameter and pitchShort vertical paths through TGVHole geometry and metallization voids
High-speed signalDielectric loss and longer tracesLow-loss glass characteristicsSignal integrity through via transitions

Adopted approach: compare warpage and overlay under the same package size and thermal history. Rejected approach: predict finished-package yield from a material CTE datasheet alone.

Reproducible Scenario: Converting CTE Difference into Relative Movement

A CTE difference stated in ppm/°C is hard to visualize. The following calculation assumes a 100mm length and a 220°C temperature swing. It computes free relative movement for CTE differences of 1, 5, and 10ppm/°C. It also compares the gross areas of Corning’s example panel formats with a 300mm circular wafer.

from math import pi

DELTA_T_C = 220
LENGTH_MM = 100

for delta_cte_ppm in (1, 5, 10):
    strain = delta_cte_ppm * 1e-6 * DELTA_T_C
    relative_shift_um = strain * LENGTH_MM * 1_000
    print(delta_cte_ppm, round(strain * 100, 3), round(relative_shift_um, 1))

wafer_300_area = pi * 150**2
for width, height in ((515, 510), (600, 600)):
    panel_area = width * height
    print(f"{width}x{height}", round(panel_area / wafer_300_area, 2))
Assumed CTE differenceThermal strainFree relative movement across 100mm
1ppm/°C0.022%22µm
5ppm/°C0.110%110µm
10ppm/°C0.220%220µm

A 515×510mm panel has about 3.72 times the gross area of a 300mm circular wafer; a 600×600mm panel has about 5.09 times. This is only an area comparison. It excludes edge keep-out, streets, breakage, via defects, and redistribution-layer defects, so it proves neither good-unit count nor cost advantage. The useful conclusion is narrower: capturing the panel-area opportunity requires panel-wide uniformity at the same time.

The relative-movement calculation is also deliberately not a warpage model. A real stack constrains its layers; elastic modulus, layer thickness, copper distribution, cure shrinkage, moisture, and the temperature-dependent properties of every material determine the final curvature and stress. The scenario is useful because it exposes scale. A CTE mismatch that sounds small in ppm can translate into tens or hundreds of micrometers across a large package before constraint is considered. That is already comparable with the dimensional budget of fine routing and assembly features. Any supplier comparison should therefore report the full stack, package dimensions, measurement temperature, and warpage convention rather than one room-temperature flatness value.


Sponsored affiliate banner

From One TGV to a Good Panel: Defects Multiply in Series

The claim I treat with the most caution is a cross-section of one via being translated into a volume-ready panel.

A TGV flow proceeds through hole formation, cleaning, surface activation, seed formation, metal fill or conformal plating, planarization, and connection to the redistribution layer. Missing coverage at a via bottom, sidewall voids, copper-glass delamination, and cracks after thermal cycling are different failure modes. Samsung Electro-Mechanics used its 2026 exhibition to show fine-channel formation in glass, metal filling, and precision surface processing. The release did not provide panel yield or sample size.

StepRepresentative defectProduction metric neededWhat one cross-section cannot show
Glass handlingEdge chip, microcrack, breakageBreakage rate, edge exclusion, tool stopsDelayed failure downstream
TGV formationTaper variation, placement error, residueDiameter distribution, placement accuracy, taktPanel-wide uniformity
MetallizationVoid, seed discontinuity, overburdenDaisy-chain resistance distribution, void rateThermal-cycle lifetime
Build-up / RDLAdhesion failure, overlay error, warpageYield by layer, warpage map, rework rateCost per good panel
Singulation / assemblyCrack, bump open, local warpageGood-unit yield, assembly escapesReliability in the customer system

Yields multiply across steps. If five steps were each 99%, the arithmetic product would be about 95.1%. That is an illustration, not a reported glass-substrate result. Process yields are not necessarily independent or constant, which is why a pass at one step must not be converted into total production yield.

The distribution matters as much as the average. A panel can show an acceptable mean via resistance while a local cluster near one edge creates assembly escapes. The same applies to warpage: a single peak-to-valley number may hide local curvature under a large chiplet or HBM site. Useful production evidence would pair a spatial map with lot count, sample count, measurement repeatability, and the disposition of failed panels. Without those fields, two vendors can use the same words—“TGV qualified” or “low warpage”—for materially different evidence packages.

Pitfall: Do Not Mix Carriers, Cores, and Interposers

Terminology creates another source of false comparisons. A carrier temporarily supports a wafer or panel during processing. A core substrate remains as the package foundation. An interposer is a high-density routing layer between chips and the substrate. NIST defines the substrate targeted by its program as the base layer supporting direct chip connection, chip-to-chip communication, and power delivery without an intermediate interposer. Every comparison should first identify which layer of glass the source describes.

Government support is also not commercial traction. NIST’s $100 million award supports Absolics’ SMART Packaging R&D and ecosystem development. Separately, the U.S. Department of Commerce finalized up to $75 million for a manufacturing facility. These decisions demonstrate strategic and supply-chain importance, but they do not establish customer acceptance, margin, or production yield.


Sponsored affiliate banner

The Evidence Sequence for a Volume-Manufacturing Decision

Instead of tracking target years alone, I would track events that raise the quality of the evidence.

Samsung Electro-Mechanics says it is producing prototypes on a Sejong pilot line and plans to begin production through a joint venture with the Sumitomo Chemical group after 2027. It displayed glass-substrate technology at KPCA Show in September 2026. This is stronger evidence than a material research concept, but it is not evidence that production qualification is complete. Intel similarly describes market delivery in the latter half of the decade without disclosing a customer product, volume, or yield.

Evidence stagePublic exampleEvidence needed nextInvalid investment inference
Material propertyCTE range, low loss, flatnessLot variation and surface qualityGood material automatically means manufacturable
Test vehicleTGV cross-section, electrical path, package sampleSample count and failure distributionEstimate panel yield from one section
Pilot lineSamsung Sejong prototypesTakt, uptime, rework, good-panel yieldTreat pilot operation as production revenue
Customer qualificationSample promotion and evaluationQualification completion and frozen specificationCall evaluation a design win
Volume productionProduction plan after 2027Shipment volume, repeat orders, multiple customersConvert a target year into contracted revenue

Adopted approach: place via distributions, warpage maps, good-panel yield, equipment uptime, and customer qualification in one quarterly evidence table. Rejected approach: derive supply volume or revenue from the words “mass-production plan” in an exhibition release.

Scenarios and Watchlist

A conditional scenario framework is more defensible than assigning a single adoption year.

ScenarioConditionPrimary evidence to watchWhat changes the view
BasePilot work and customer samples continue; volume remains limitedPrototype updates, JV formation, qualification statusRepeated schedule delays
MainOne application completes qualification and enters limited volumeCustomer use, shipment start, disclosed yield rangePanel or assembly defects erase the cost case
UpsideMultiple customers and package types adoptRepeat orders, capacity expansion, multi-lot dataConcentration remains in one customer or structure
Tail riskCrack, TGV, or warpage becomes the limiting stepSpecification changes, added tests, equipment modificationsComparable adoption by independent customers

The conclusion is intentionally narrow. Glass core is a credible material option for addressing both warpage and routing density in large AI packages. The decisive question has shifted from whether glass can be fabricated to whether TGV and build-up layers can be produced uniformly across a large panel while preserving good units through assembly. Distribution data, sample counts, consecutive lots, and cost per good area will be more useful than another maximum-performance figure.


Next Issue Ideas

  • Idea 1: Seed Formation on Glass vs. ABF — Compare PVD, electroless copper, and copper nanoink under matched conditions for step coverage, adhesion, and repair.
  • Idea 2: A Production-Diligence Template for TGV — Turn via-diameter distributions, daisy chains, thermal cycling, and panel maps into a supplier question set.
  • Idea 3: Glass-Substrate Equipment and Materials Watchlist — Track orders and acceptance separately across laser drilling, metrology, plating, and handling.

References

This article is for informational purposes and is not a recommendation to buy any listed or private security. The author may hold securities issued by companies mentioned here or related companies. Generative AI assisted research, drafting, and translation. Calculations use stated assumptions and do not guarantee product performance, production yield, or investment returns. See the full disclaimer.

Sponsored affiliate banner