AI

The **MB86060** is a high-performance, high-speed **Digital-to-Analog Converter (DAC)** originally developed by Fujitsu. It is specifically designed for high-frequency signal generation, commonly used in telecommunications and professional video equipment.
---
## 1. Key Technical Specifications
The MB86060 is known for its high sampling rate and integration capabilities. Below are the primary technical parameters:
| Parameter | Specification |
| :--- | :--- |
| **Resolution** | 12-Bit |
| **Max Sampling Rate** | 400 MSPS (Mega Samples Per Second) |
| **Architecture** | Current Segmented DAC |
| **Supply Voltage** | +3.3V / -2.0V or -5.2V (Varies by sub-model) |
| **Interface** | Parallel (ECL/PECL compatible) |
| **Package Type** | LQFP or HQFP |
---
## 2. Core Functional Blocks
The internal electronic structure of the MB86060 consists of several critical stages:
### A. Input Latches
To handle the 400 MSPS data rate, the chip includes high-speed input registers. These ensure that the 12-bit digital words are synchronized with the clock signal before being converted, minimizing "glitch energy."
### B. Segmented Current Source Array
The conversion is performed using a **segmented architecture**:
* **Upper Bits:** Use a thermometer-coded current source array to ensure high linearity and low DNL (Differential Non-Linearity).
* **Lower Bits:** Use binary-weighted sources to save space and power.
### C. Internal Reference
The chip typically includes an on-chip bandgap voltage reference, though an external reference can often be used for higher precision applications.
---
## 3. Pin Configuration Categories
The pins of the MB86060 can be categorized into four functional groups:
1. **Digital Inputs (D0–D11):** The 12-bit parallel data bus.
2. **Clock Inputs (CLK, /CLK):** Differential clock inputs to reduce jitter.
3. **Analog Outputs (IOUT, /IOUT):** Differential current outputs. Using differential outputs helps cancel common-mode noise.
4. **Power & Ground:** Separate Analog VDD (AVDD) and Digital VDD (DVDD) to prevent digital switching noise from interfering with the analog signal.
---
## 4. Typical Applications
Because of its high speed and 12-bit resolution, the MB86060 is used in:
* **Arbitrary Waveform Generators (AWG):** Creating complex electronic signals.
* **Communication Systems:** Modulating signals for radio frequency (RF) transmission.
* **Medical Imaging:** Used in ultrasound or MRI signal processing.
* **Test & Measurement:** High-end oscilloscopes and signal analyzers.
---
## 5. Implementation Example (Pseudo-Logic)
If interfacing the MB86060 with an FPGA, the logic flow generally follows this pattern:
```verilog
// Simplified representation of sending data to MB86060
module dac_interface (
input wire clk_400mhz,
input wire [11:0] digital_signal,
output reg [11:0] dac_data_bus,
output wire dac_clk_p,
output wire dac_clk_n
);
assign dac_clk_p = clk_400mhz;
assign dac_clk_n = ~clk_400mhz;
always @(posedge clk_400mhz) begin
dac_data_bus <= digital_signal; // Latch data to the DAC bus
end
endmodule
```
- ⤷
What are the power consumption characteristics of the MB86060 at maximum sampling rates?
- ⤷ How does the MB86060 compare to modern 12-bit DACs from Analog Devices or TI?
- ⤷ What type of reconstruction filter is recommended for the MB86060 analog output?