Rev 3343 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 3343 | Rev 3742 | ||
---|---|---|---|
Line 84... | Line 84... | ||
84 | interrupt_init(); |
84 | interrupt_init(); |
85 | 85 | ||
86 | console_init(device_assign_devno()); |
86 | console_init(device_assign_devno()); |
87 | 87 | ||
88 | #ifdef CONFIG_FB |
88 | #ifdef CONFIG_FB |
- | 89 | fb_properties_t prop = { |
|
89 | fb_init(machine_get_fb_address(), 640, 480, 1920, VISUAL_RGB_8_8_8); |
90 | .addr = machine_get_fb_address(), |
- | 91 | .offset = 0, |
|
- | 92 | .x = 640, |
|
- | 93 | .y = 480, |
|
- | 94 | .scan = 1920, |
|
- | 95 | .visual = VISUAL_RGB_8_8_8, |
|
- | 96 | }; |
|
- | 97 | fb_init(&prop); |
|
90 | #endif |
98 | #endif |
91 | } |
99 | } |
92 | 100 | ||
93 | /** Performs arm32 specific tasks needed after cpu is initialized. |
101 | /** Performs arm32 specific tasks needed after cpu is initialized. |
94 | * |
102 | * |