blob: a4cd272a83599b4b4240c1aac25b489d480aee8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef NORTHBRIDGE_AMD_GX2_H
#define NORTHBRIDGE_AMD_GX2_H
#include <cpu/amd/gx2def.h>
/* northbridge.c */
unsigned int gx2_scan_root_bus(device_t root, unsigned int max);
int sizeram(void);
void do_vsmbios(void);
void graphics_init(void);
/* northbridgeinit.c */
void northbridge_init_early(void);
uint32_t get_systop(void);
#endif /* NORTHBRIDGE_AMD_GX2_H */
|