| .. | .. |
|---|
| 24 | 24 | */ |
|---|
| 25 | 25 | |
|---|
| 26 | 26 | #include "dm_services.h" |
|---|
| 27 | + |
|---|
| 27 | 28 | #include "include/gpio_types.h" |
|---|
| 28 | 29 | #include "../hw_factory.h" |
|---|
| 30 | + |
|---|
| 31 | +#include "../hw_gpio.h" |
|---|
| 32 | +#include "../hw_ddc.h" |
|---|
| 33 | +#include "../hw_hpd.h" |
|---|
| 34 | +#include "../hw_generic.h" |
|---|
| 29 | 35 | |
|---|
| 30 | 36 | #include "hw_factory_dce110.h" |
|---|
| 31 | 37 | |
|---|
| .. | .. |
|---|
| 143 | 149 | } |
|---|
| 144 | 150 | |
|---|
| 145 | 151 | static const struct hw_factory_funcs funcs = { |
|---|
| 146 | | - .create_ddc_data = dal_hw_ddc_create, |
|---|
| 147 | | - .create_ddc_clock = dal_hw_ddc_create, |
|---|
| 148 | | - .create_generic = NULL, |
|---|
| 149 | | - .create_hpd = dal_hw_hpd_create, |
|---|
| 150 | | - .create_sync = NULL, |
|---|
| 151 | | - .create_gsl = NULL, |
|---|
| 152 | + .init_ddc_data = dal_hw_ddc_init, |
|---|
| 153 | + .init_generic = NULL, |
|---|
| 154 | + .init_hpd = dal_hw_hpd_init, |
|---|
| 155 | + .get_ddc_pin = dal_hw_ddc_get_pin, |
|---|
| 156 | + .get_hpd_pin = dal_hw_hpd_get_pin, |
|---|
| 157 | + .get_generic_pin = NULL, |
|---|
| 152 | 158 | .define_hpd_registers = define_hpd_registers, |
|---|
| 153 | 159 | .define_ddc_registers = define_ddc_registers |
|---|
| 154 | 160 | }; |
|---|