blob: c1e9808631df92b4cb678e5e55dd8cac75d9c819 [file] [log] [blame]
Angel Pons182dbde2020-04-02 23:49:05 +02001/* SPDX-License-Identifier: GPL-2.0-only */
2/* This file is part of the coreboot project. */
Frank Vibrans63e62b02011-02-14 18:38:14 +00003
4
Kerry Shefeed3292011-08-18 18:03:44 +08005#ifndef _CIMX_H_
6#define _CIMX_H_
Frank Vibrans63e62b02011-02-14 18:38:14 +00007
8/**
Kerry Shefeed3292011-08-18 18:03:44 +08009 * AMD South Bridge CIMx entry point wrapper
10 */
11void sb_Poweron_Init(void);
12void sb_Before_Pci_Init(void);
13void sb_After_Pci_Init(void);
14void sb_Mid_Post_Init(void);
15void sb_Late_Post(void);
zbao9bcdbf82012-04-05 13:18:49 +080016void sb_Before_Pci_Restore_Init(void);
17void sb_After_Pci_Restore_Init(void);
18
Kerry Shefeed3292011-08-18 18:03:44 +080019/**
20 * CIMX not set the clock to 48Mhz until sbBeforePciInit,
21 * coreboot may need to set this even more earlier
22 */
23void sb800_clk_output_48Mhz(void);
24
Kerry Shefeed3292011-08-18 18:03:44 +080025#endif