Device that selects between several analog or digital input signals
This article is about electronics switching. For telecommunications, seemultiplexing.
Schematic of a 2-to-1 multiplexer. It can be equated to a controlled switch.Schematic of a 1-to-2 demultiplexer. Like a multiplexer, it can be equated to a controlled switch.
Inelectronics, amultiplexer (ormux; spelled sometimes asmultiplexor), also known as adata selector, is a device that selects between severalanalog ordigital input signals and forwards the selected input to a single output line.[1] The selection is directed by a separate set of digital inputs known as select lines. A multiplexer of inputs has select lines, which are used to select which input line to send to the output.[2]
A multiplexer makes it possible for several input signals to share one device or resource, for example, oneanalog-to-digital converter or one communicationstransmission medium, instead of having one device per input signal. Multiplexers can also be used to implementBoolean functions of multiple variables.
Conversely, ademultiplexer (ordemux) is a device that takes a single input signal and selectively forwards it to one of several output lines. A multiplexer is often used with a complementary demultiplexer on the receiving end.[1]
An electronic multiplexer can be considered as amultiple-input, single-output switch, and a demultiplexer as asingle-input, multiple-output switch.[3] The schematic symbol for a multiplexer is anisosceles trapezoid with the longer parallel side containing the input pins and the short parallel side containing the output pin.[4] The schematic on the right shows a 2-to-1 multiplexer on the left and an equivalent switch on the right. The wire connects the desired input to the output.
Multiplexers are part of computer systems to select data from a specific source, be it a memory chip or a hardware peripheral. A computer uses multiplexers to control the data and address buses, allowing the processor to select data from multiple data sources.
The basic function of a multiplexer: combining multiple inputs into a single data stream. On the receiving side, a demultiplexer splits the single data stream into the original multiple signals.
In digital communications, multiplexers allow several connections over a single channel by connecting the multiplexer's single output to the demultiplexer's single input (time-division multiplexing). The image to the right demonstrates this benefit. In this case, the cost of implementing separate channels for each data source is higher than the cost and inconvenience of providing the multiplexing/demultiplexing functions.
At the receiving end of thedata link a complementarydemultiplexer is usually required to break the single data stream back down into the original streams. In some cases, the far end system may have functionality greater than a simple demultiplexer, and while the demultiplexing still occurs technically, it may never be implemented discretely. This would be the case when, for instance, a multiplexer serves a number ofIP network users; and then feeds directly into arouter, which immediately reads the content of the entire link into itsrouting processor; and then does the demultiplexing in memory from where it will be converted directly into IP sections.
Often, a multiplexer and demultiplexer are combined into a single piece of equipment, which is simply referred to as amultiplexer. Both circuit elements are needed at both ends of a transmission link because most communications systems transmit inboth directions.
Inanalog circuit design, a multiplexer is a special type of analog switch that connects one signal selected from several inputs to a single output.
Indigital circuit design, the selector wires are of digital value. In the case of a 2-to-1 multiplexer, a logic value of 0 would connect to the output, while a logic value of 1 would connect to the output.In larger multiplexers, the number of selector pins is equal to where is the number of inputs.
For example, 9 to 16 inputs would require no fewer than 4 selector pins and 17 to 32 inputs would require no fewer than 5 selector pins. The binary value expressed on these selector pins determines the selected input pin.
A 2-to-1 multiplexer has aBoolean equation where and are the two inputs, is the selector input, and is the output:
These tables show that when then but when then. A straightforward realization of this 2-to-1 multiplexer would need 2 AND gates, an OR gate, and a NOT gate. While this is mathematically correct, a direct physical implementation would be prone torace conditions that require additional gates to suppress.[5]
Larger multiplexers are also common and, as stated above, require selector pins for inputs. Other common sizes are 4-to-1, 8-to-1, and 16-to-1. Since digital logic uses binary values, powers of 2 are used (4, 8, 16) to maximally control a number of inputs for the given number of selector inputs.
Larger multiplexers can be constructed by using smaller multiplexers by chaining them together in what are called "mux trees". For example, an 8:1 multiplexer can be made with two 4:1 multiplexers and one 2:1 multiplexer. The two 4:1 multiplexer outputs are fed into the 2:1 with the selector pins on the 4:1's put in parallel giving a total number of selector inputs to 3, which is equivalent to an 8:1.
Demultiplexers take one data input and a number of selection inputs, and they have several outputs.They forward the data input to one of the outputs depending on the values of the selection inputs.Demultiplexers are sometimes convenient for designing general-purpose logic because if the demultiplexer's input is always true, the demultiplexer acts as abinary decoder.This means that any function of the selection bits can be constructed by logically OR-ing the correct set of outputs.
If X is the input and S is the selector, and A and B are the outputs:
Bi-directional multiplexers are built usinganalog switches ortransmission gates controlled by the select pins. This allows the roles of input and output to be swapped so that a bi-directional multiplexer can function both as a demultiplexer and multiplexer.[6]
Multiplexers can also be used asprogrammable logic devices, to implement Boolean functions. Any Boolean function ofn variables and one result can be implemented with a multiplexer withn selector inputs. The variables are connected to the selector inputs, and the function result, 0 or 1, for each possible combination of selector inputs is connected to the corresponding data input. If one of the variables (for example,D) is also available inverted, a multiplexer withn−1 selector inputs is sufficient; the data inputs are connected to 0, 1,D, or ~D, according to the desired output for each combination of the selector inputs.[7]
Multiplexers have found application in unconventionalstochastic computing (SC), particularly in facilitating arithmetic addition. In this paradigm, data is represented as a probability bitstream where the number of '1' bits signifies the magnitude of a value. Thus, the function of a 2-to-1 multiplexer can be conceptualized as a probability function denoted as:
, where a and b are the input bitstream and s is the select input. Using the select input = 0.5 yields:
While this approach doesn't yield exact addition but rather scaled addition, it is deemed acceptable in most SC studies. Multiplexers are extensively utilized for tasks such as average addition, average pooling, and median filtering within SC circuits. Moreover, more sophisticated applications of multiplexers include serving as Bernstein polynomial function generator,[8] capable of producing arbitrary mathematical functions within the SC domain. Recent research has also revealed that combinations of multiplexers can facilitate large-scalemultiply-accumulate operation,[9] demonstrating feasibility in acceleratingconvolutional neural network onfield-programmable gate arrays.