User`s manual

387
388 ///////////////////////////////////////////////////////////////////////////////
389 // Register E
390 ///////////////////////////////////////////////////////////////////////////////
391
392 ‘define TEMPORAL_DECIMATION_ENABLE 1’b0
393 // 0: Disable
394 // 1: Enable
395 ‘define TEMPORAL_DECIMATION_CONTROL 2’h0
396 // 0: Supress frames, start with even field
397 // 1: Supress frames, start with odd field
398 // 2: Supress even fields only
399 // 3: Supress odd fields only
400 ‘define TEMPORAL_DECIMATION_RATE 4’h0
401 // 0-F: Number of fields/frames to skip
402
403 ‘define ADV7185_REGISTER_E {1’b0, ‘TEMPORAL_DECIMATION_RATE, ‘TEMPORAL_DECIMATION_CONTROL, ‘TEMPORAL_DECIMATION_ENABLE}
404
405 ///////////////////////////////////////////////////////////////////////////////
406 // Register F
407 ///////////////////////////////////////////////////////////////////////////////
408
409 ‘define POWER_SAVE_CONTROL 2’h0
410 // 0: Full operation
411 // 1: CVBS only
412 // 2: Digital only
413 // 3: Power save mode
414 ‘define POWER_DOWN_SOURCE_PRIORITY 1’b0
415 // 0: Power-down pin has priority
416 // 1: Power-down control bit has priority
417 ‘define POWER_DOWN_REFERENCE 1’b0
418 // 0: Reference is functional
419 // 1: Reference is powered down
420 ‘define POWER_DOWN_LLC_GENERATOR 1’b0
421 // 0: LLC generator is functional
422 // 1: LLC generator is powered down
423 ‘define POWER_DOWN_CHIP 1’b0
424 // 0: Chip is functional
425 // 1: Input pads disabled and clocks stopped
426 ‘define TIMING_REACQUIRE 1’b0
427 // 0: Normal operation
428 // 1: Reacquire video signal (bit will automatically reset)
429 ‘define RESET_CHIP 1’b0
430 // 0: Normal operation
431 // 1: Reset digital core and I2C interface (bit will automatically reset)
432
52