Skip to main content

Clock doubling in the CPU

The problem with the high clock frequencies is to ensure that other electronic components keep up with the pace. It is rather simple to make data move very fast inside a chip where the print tracks are microscopic. But when we move outside the chip, other problems appear. The other components must be able to keep up with the pace. When the frequency gets too high, the circuit board print tracks start acting as antennae and various forms of "radio noise" appears. Briefly, it becomes expensive to make the rest of the hardware to keep up with these high frequencies.

The solution to this problem was to split the clock frequency in two:
  • A high internal clock frequency, which governs the pace of the CPU.
  • A lower external clock frequency, which governs the pace on the system bus. This is where the CPU exchanges data with RAM and the I/O units.
Intel's 80486DX2 25/50 MHZ was the first chip with clock doubling. It was introduced in 1992 with great potential. For a lower price you could acquire a chip, which provided 90% of the 486DX50 performance. The DX50 runs at 50 MHZ both internally and externally. The DX2 runs at just 25 MHZ on the system bus. This enables lower cost system boards. Also RAM speed demands are much lower.

Clock doubling occurs inside the CPU. If the system board crystal works at 25 MHZ, the CPU will receive a signal every 40 nanosecond (ns). Internally in the CPU, this frequency is doubled to 50 MHZ. Now the clock ticks every 20 ns inside the CPU. This frequency governs all internal transactions, including integer unit, floating point unit, and all memory management unit operations as well as others. The only area still working at 25 MHZ are external data transfers. That is transfers to RAM, BIOS and the I/O ports.

Today the speed problem is in RAM. The ordinary FPM RAM and EDO RAM can function at a maximum of 66 MHZ (possibly 75 MHZ). Therefore, Pentium and similar CPU's are "clocked up" 2-4 times internally. They work well at high frequencies like 166, 200, 233 and 266 MHZ.

Comments

Popular posts from this blog

ISDN

ISDN stands for "Integrated Services Digital Network" A digital telephone connection like a modem that uses digital links & offers speeds above five times that of an analog modem. The ISDN system is a packet system that can also handle voice communication.

Removing Shortcut arrow in Windows 7 - "Regedit Process"

Step 1 Click the Start Menu and Type regedit into the search box and Press Enter. Step 2 Browse to the following registry key: KEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons If the Shell Icons key does not exist you’ll need to create it.  To do so Right-Click the Explorer key and Select New > Key. Step 3 In the right pane of the Shell Icons key, Right-Click any empty area and Select New > String Value.  Name the new string 29. NOTE: If Shell Icons key is not listed please add the key: Step 4 Right or Double-Click the 29 entry to modify it.  In the value data box enter the following: C:\Windows\System32\shell32.dll,50 Click OK. Step 5 You can restart Explorer and the changes should take effect, but there it will appear to be a little buggy until you Restart your computer. Done...

About CPU cache RAM

The CPU must deliver its data at a very high speed. The regular RAM can not keep up with that speed. Therefore, a special RAM type called cache is used as a buffer - temporary storage. To get top performance from the CPU, the number of outgoing transactions must be minimized. The more data transmissions, which can be contained inside the CPU, the better the performance. Therefore,the 486 was equipped with a built in mathematical co-processor, floating point unit and 8 KB L1-cache RAM. These two features help minimize the data flow in and out of the CPU. Cache RAM becomes especially important in clock doubled CPU's, where internal clock frequency is much higher than external. Then the cache RAM enhances the "horsepower" of the CPU, by allowing faster receipt or delivery of data. Beginning with 486 processors, two layers of cache are employed. The fastest cache RAM is inside the CPU. It is called L1 cache. The next layer is the L2 cache, which are small SRAM chips on the sy...