blob: 4d3fa8fa6ff1df915ea3050fabe5945a4717329e [file] [log] [blame]
Wedson Almeida Filhofdf4afc2018-07-19 15:45:21 +01001#ifndef _FDT_HANDLER_H
2#define _FDT_HANDLER_H
3
Andrew Scull18c78fc2018-08-20 12:57:41 +01004#include "hf/boot_params.h"
5#include "hf/fdt.h"
6#include "hf/mm.h"
Wedson Almeida Filhofdf4afc2018-07-19 15:45:21 +01007
Andrew Scull265ada92018-07-30 15:19:01 +01008bool fdt_get_boot_params(paddr_t fdt_addr, struct boot_params *p);
9bool fdt_patch(paddr_t fdt_addr, struct boot_params_update *p);
Wedson Almeida Filhofdf4afc2018-07-19 15:45:21 +010010
11#endif /* _FDT_HANDLER_H */