cpu.c 814 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /*
  2. * Copyright (C) 2015, Miao Yan <yanmiaobest@gmail.com>
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. #include <common.h>
  7. #include <cpu.h>
  8. #include <dm.h>
  9. #include <errno.h>
  10. #include <qfw.h>
  11. #include <asm/cpu.h>
  12. DECLARE_GLOBAL_DATA_PTR;
  13. int cpu_qemu_get_desc(struct udevice *dev, char *buf, int size)
  14. {
  15. if (size < CPU_MAX_NAME_LEN)
  16. return -ENOSPC;
  17. cpu_get_name(buf);
  18. return 0;
  19. }
  20. static int cpu_qemu_get_count(struct udevice *dev)
  21. {
  22. return qemu_fwcfg_online_cpus();
  23. }
  24. static const struct cpu_ops cpu_qemu_ops = {
  25. .get_desc = cpu_qemu_get_desc,
  26. .get_count = cpu_qemu_get_count,
  27. };
  28. static const struct udevice_id cpu_qemu_ids[] = {
  29. { .compatible = "cpu-qemu" },
  30. { }
  31. };
  32. U_BOOT_DRIVER(cpu_qemu_drv) = {
  33. .name = "cpu_qemu",
  34. .id = UCLASS_CPU,
  35. .of_match = cpu_qemu_ids,
  36. .ops = &cpu_qemu_ops,
  37. };