This article refers to the address: http://
Abstract This paper introduces the design and implementation method of USB camera driver based on CH374. The USB bus interface chip CH374 supporting USB-HOST host mode is used to give the hardware circuit and software implementation of the CH374 driver USB camera SPCA561A under S3C44B0, including video data acquisition and subsequent processing scheme. Using CH374 to support the characteristics of synchronous transmission, a low-cost video data acquisition scheme is given on the ARM7-based platform.Keywords CH374 S3C44B0 synchronous transmission SPCA56lA camera driver
Most of the existing video surveillance systems are designed for USB video capture and Ethernet transmission, and require a video compression scheme, which usually requires operating system support. Therefore, the selected development platform is expensive, resulting in high cost of the video surveillance system, resulting in small size. Factory and home users are difficult to accept.
This topic uses the ARM7 development platform of S3C4480 microprocessor to drive the USB interface chip CH374 for video data acquisition, providing a low-cost video acquisition solution. USB video capture involves USB synchronous transmission, but in many USB host chips, control transmission and bulk transmission are mostly used, and the explanation of synchronous transmission is extremely rare. This article provides a design example of USB synchronous transmission.
1 System working principle The typical USB video acquisition system is shown in Figure 1. The USB system consists of two basic elements: the host and the physical device. A USB system can only have one USB host, and can be connected to multiple physical devices. The device in this design is a USB camera, and the USB host is composed of a USB host controller, a microprocessor and driver software. The working level of the USB system is clear: the USB interface layer provides physical connection between the host controller and the device; in the device layer. The USB host calls the driver to send and obtain the control information of the USB device through the endpoint O; the functional layer performs the actual data transmission, and the host must select the appropriate interface and endpoint, and call the interface function provided by the underlying driver to obtain the video data stream of the USB camera.
1.1 USB camera SPCA561A
Video signal acquisition is generally achieved by selecting a USB camera. As shown in Figure 2, the USB camera SPCA56lA integrates a lens, CMOS sensor, USB image processor and USB controller.
Compared to CMOS sensors that interface directly with the microprocessor, the use of a USB camera is costly, but it is easy to implement, saves CPU resources, and is very rich in driver support. The SPCA561A provides a single-chip camera solution that integrates a CIF CMOS sensor, an image processor and a USB controller into a single chip, which greatly reduces cost and development difficulty; the disadvantage is only 100,000 pixels per The number of second frames is small, but it is ideal for small surveillance systems where image requirements are not high.
1.2 USB Host Controller CH374
CH374 is a universal interface chip for embedded USB bus. It supports USB host mode and USB device mode. It supports low-speed and full-speed control transmission, batch transmission, interrupt transmission and synchronous transmission. On the local side, the CH374 has an 8-bit data bus and read, write, chip select control lines and interrupt outputs, which can be easily hooked up to the system bus of controllers such as DSP/MCU/MPU. Most embedded USB host interface chips do not provide synchronous transfer mode, and the CH374 features synchronous transfer, making video and audio streams possible.
This system uses CH374 as the USB host controller, as shown in Figure 3. CH374 is connected to S3C4480 by bus. The microcontroller implements USB host drive by reading and writing CH374 register.
1.3 USB Synchronous Transmission Principle Synchronous transmission is mainly used to transmit audio or video signals. This kind of information is cyclical and real-time. It has high requirements for real-time information, but it can tolerate the bit error rate. So USB reserves 90% of the bandwidth for this type of information, and other types of transmissions are not available during synchronous transmission.
In order to ensure the real-time nature of data transmission, synchronous transmission does not perform data error retransmission, nor does it respond to a handshake packet at the hardware level. The synchronous transmission host sends an SOF synchronization signal every lms, and then receives the signal sent by the device. The data flow is shown in FIG. 4.
In synchronous transmission, the capacity of each envelope is fixed. For SPCA561, the corresponding interface number must be set before starting the synchronous transfer. Different interface numbers determine how much packet capacity will be sent. For example, the number of packets sent by interface number 1 is 128 bytes, and the packet capacity of interface number 6 is 896 bytes. The interface number is set by requesting SET_INTERFACE via the USB standard device. Since the CH374 buffer is up to 128 bytes. Therefore, in this design, interface number 1 is used, and a packet of a size of 128 bytes per received packet is synchronously transmitted.
1.4 Video data acquisition process As shown in Figure 5, the video signal is acquired by the camera SPCA56lA. After the internal image processing chip is encoded into the specified format, generally RGB or YUV format, but SPCA561 uses a special S56l image format. (similar to RGB format). Because the data volume of a frame of image is large and cannot be transmitted in a synchronization envelope, it is divided into a plurality of units, and a header is added before each unit (the content of the header includes the current packet sequence number and the image frame information). Multiple sync packets are sent to the USB bus through the FIFO buffer. The host controller receives each packet in a synchronous manner and removes the data of the header into S561 format to form a complete image frame. Finally, the image frame is precoded by the software into image data in the YUV420 format for subsequent compression processing.
2 USB camera driver implementation USB camera is not a standard USB peripheral. Unlike other USB peripherals, each manufacturer's camera chip has its own defined device request, and these camera chip data sheets are not open to the public, so it is very difficult to write a camera driver, and you want to drive more support. The camera, the program will be very complicated. This article only introduces the SPCA561A camera driver method.
2.1 USB Camera Initialization There are two steps to initialize a USB camera. The first step is the enumeration of the camera, and the second step is the camera's custom settings.
(1) The enumeration of device enumeration devices is the process of standard device request. This part is included in Chapter 9 of the USB protocol. For USB cameras, the enumeration process is as follows:
1 Get the device descriptor. The load of endpoint 0 is obtained by the device descriptor, that is, the maximum packet capacity.
2 Set the address. Assign the device an address other than the default address of 0.
3 Get the configuration descriptor. This process consists of two phases. The first 4 bytes of the configuration descriptor obtained for the first time get the real length of the configuration descriptor; the second time, the configuration descriptor is obtained with the real length. This descriptor contains the configuration information of the device. And multiple interface information. From here you can get the interface number that can be used and the corresponding envelope load.
4 Set the configuration information. The main information set is the 5th field bComfigurationValue in the configuration descriptor.
5 Set the interface. The different interface numbers of the USB camera correspond to different packet loads. The interface number selected by this design is 2, and the corresponding packet load is 128 bytes.
(2) Custom setting USB camera is not a standard USB peripheral. It requires a lot of custom settings. It can be called “custom device requestâ€. It is transmitted by standard device request packet. The purpose is to modify the internal register. Capture images and compress methods for configuration. The different contents of the standard device request and the custom device request package are listed in Table 1. The content of the custom device request is very rich, it contains the following aspects:
1 Timing generation settings. Includes image acquisition frequency and oscillator settings.
2 image processing settings. Includes configuration properties such as image window size, compression type, and color assignment.
3 memory settings. Set the image buffer.
4 control and status settings. It includes configuration attributes such as starting and stopping image acquisition, data transmission mode, and current status.
There are nearly one hundred initialization settings in the program. For details, please refer to the open source code in Reference [1]. After the initialization is completed, the image format can be set as needed. The SPCA561A supports four formats: sQVGA (160×120), QCIF (176×144), QVGA (320×240), and CIF (352×288). After the setting is completed, the camera acquisition is started and data transmission is performed.
2.2 Synchronous transmission and image frame processing The process of synchronous transmission is very simple, and does not even include handshake information. However, because synchronous transmission requires high timing, it is difficult to process synchronous transmission data. The design of this driver processes the reception of synchronous data with an interrupt service routine, and the processing of synchronous data is performed outside the interrupt service.
1 interrupt service program flow shown in Figure 6. Each time a synchronous interrupt occurs, the received 128-byte sync packet is first read from the buffer of the USB host controller, and the data is stored in the storage unit provided by the data processing program. Then send the PID_IN flag and endpoint number, set the synchronous transmission type and start the next transmission. The CH374 host will send one SOF synchronization flag per lms. After receiving the SOF flag, the USB device will transmit the next synchronization packet.
2 Synchronous data processing program is shown in Figure 7. After the end of the interrupt, the data processing program is executed, and the program reads the first byte of the synchronization envelope and confirms the serial number of the packet. The range of the serial number is 0 to 0xFF. If the sequence number is 0xFF, it indicates that it is an invalid packet and needs to be discarded. If the sequence number is 0, it may be the first synchronization data packet collected for the first time, and directly store the data to the image frame; or the first synchronization packet of the next frame image that starts after the end of the current image frame, Then you need to process the current frame image that has ended, and set the current frame to the next frame. So far, one frame of image data is obtained.
2.3 Image Data Precoding The processed image frame is S561 format data, which is an RGB format image that cannot be used by subsequent image encoders. The video data input by the commonly used video compression standard (such as H.263, MPEG4, etc.) is in the YUV420 format, so the current S561 format data must be precoded to make it into the YUV420 format. Because the algorithm is more complicated, it will not be described in detail here. Please refer to the source code of the bayer_decode() function in [1]. At this point, the camera driver based on CH374 is completed.
3 Design Experience Because this USB host is based on low-end embedded hardware system, no operating system support, no BUSHUND similar USB data stream analysis software support, it is difficult to find a USB synchronous transfer reference program based on embedded platform, so the design is very difficult. . The author's design experience is focused on the choice of reference programs.
The design of this topic can be divided into two parts: one is the underlying CH374 host controller driver, mainly including device detection and enumeration (this part of the program can be designed with reference to the driver similar to the host controller, such as Cypress SL811HS chip host The driver; the other part is the camera initialization, video data reading and processing program, the only reference material is the open source USB camera driver under Linux. In the design process, you need to understand the Linux device driver principle first, and analyze the USB camera driver well. After that, there will be design ideas.
Conclusion This driver is added to the existing video compression program, and the video is transmitted to the PC through the network for playback. Under the image attribute of size QVGA (160×120), it can reach 7 frames per second, which basically meets the actual needs. The CH374-based USB camera driver provides a low-cost embedded platform for video capture, making the video capture system unattainable and playing a positive role in the popularity of video surveillance.
Pcb Mounted Speaker ,Round Speaker With Pin,Min Pcb Mounted Speaker,Speaker For Voice Broadcast
Jiangsu Huawha Electronices Co.,Ltd , https://www.hnbuzzer.com